diff options
author | plegall <plg@piwigo.org> | 2011-11-07 10:53:23 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2011-11-07 10:53:23 +0000 |
commit | 31689aeca1bee1c5e12c4645583e4f002d5ec17e (patch) | |
tree | edd8e32a2ebeaf2bcc214321dd70ec9c06ed5578 /admin/cat_modify.php | |
parent | 22154db6a4f4ff4c464d213b3203815f7ae184f2 (diff) |
merge r12575 from branch 2.3 to trunk
bug 2491 fixed: on album admin screen, don't display "1 album moved" message
when the album is not really moved.
git-svn-id: http://piwigo.org/svn/trunk@12576 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/cat_modify.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/admin/cat_modify.php b/admin/cat_modify.php index 3c944ce7b..5b29a85d9 100644 --- a/admin/cat_modify.php +++ b/admin/cat_modify.php @@ -75,7 +75,15 @@ if (isset($_POST['submit'])) set_cat_status(array($_GET['cat_id']), $_POST['status']); } - if (isset($_POST['parent']) and $cat_info['id_uppercat'] != $_POST['parent']) + // in case the use moves his album to the gallery root, we force + // $_POST['parent'] from 0 to null to be compared with + // $cat_info['id_uppercat'] + if (empty($_POST['parent'])) + { + $_POST['parent'] = null; + } + + if ($cat_info['id_uppercat'] != $_POST['parent']) { move_categories( array($_GET['cat_id']), $_POST['parent'] ); } |