diff options
author | plegall <plg@piwigo.org> | 2016-06-23 12:37:43 +0200 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2016-06-23 12:37:43 +0200 |
commit | f9f077bb15a6789946af6806f04f0db63da692b3 (patch) | |
tree | 646e64d69ea11596d4d3e78f185126dbc92a8e18 /admin/batch_manager_global.php | |
parent | 4d75cf35b553393a9ed293c4352f19dbbb94b7a6 (diff) |
fixes #452, update images.lastmodified when changing tag list
Diffstat (limited to 'admin/batch_manager_global.php')
-rw-r--r-- | admin/batch_manager_global.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/admin/batch_manager_global.php b/admin/batch_manager_global.php index 1d5cb747d..332f3f7a7 100644 --- a/admin/batch_manager_global.php +++ b/admin/batch_manager_global.php @@ -123,6 +123,8 @@ DELETE { if (isset($_POST['del_tags']) and count($_POST['del_tags']) > 0) { + $taglist_before = get_image_tag_ids($collection); + $query = ' DELETE FROM '.IMAGE_TAG_TABLE.' @@ -130,7 +132,11 @@ DELETE AND tag_id IN ('.implode(',', $_POST['del_tags']).') ;'; pwg_query($query); - + + $taglist_after = get_image_tag_ids($collection); + $images_to_update = compare_image_tag_lists($taglist_before, $taglist_after); + update_images_lastmodified($images_to_update); + if (isset($_SESSION['bulk_manager_filter']['tags']) && count(array_intersect($_SESSION['bulk_manager_filter']['tags'], $_POST['del_tags']))) { |