diff options
author | plegall <plg@piwigo.org> | 2010-01-23 22:57:01 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-01-23 22:57:01 +0000 |
commit | 4cc6d4172ecb82cba40dff2c63a91580646a647f (patch) | |
tree | 2d45e9fee24be7c048853b565498c14e0514ddc1 /admin/element_set_global.php | |
parent | 4e26a5480e40e784d65f809443b61b860444b974 (diff) |
merge r4730 from branch 2.0 to trunk
bug 1396: when a photo was deleted, the code to avoid orphans as category
representative was 1) wrong (because a photo doesn't have to belong to a
category to represent it) 2) at the wrong place.
git-svn-id: http://piwigo.org/svn/trunk@4731 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/element_set_global.php | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/admin/element_set_global.php b/admin/element_set_global.php index 2b7b728ac..1a74e1c42 100644 --- a/admin/element_set_global.php +++ b/admin/element_set_global.php @@ -85,21 +85,9 @@ SELECT if (count($deletables) > 0) { - // what will be the categories to update? (to avoid orphan on - // representative_picture_id) - $query = ' -SELECT - category_id - FROM '.IMAGE_CATEGORY_TABLE.' - WHERE image_id IN ('.implode(',', $deletables).') -;'; - $categories_to_update = array_from_query($query, 'category_id'); - $physical_deletion = true; delete_elements($deletables, $physical_deletion); - update_category($categories_to_update); - array_push( $page['infos'], sprintf( |