diff options
author | plegall <plg@piwigo.org> | 2010-12-17 00:09:34 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-12-17 00:09:34 +0000 |
commit | ac1ae911bf34da3afbf4e092f7b1528bf3a91ac9 (patch) | |
tree | 83bbcb4598e3fb917412ee4d21319f3701d8fbf7 /admin/cat_list.php | |
parent | 9f97e8fa00f08408c17a5e9c8054e33c8d134ad4 (diff) |
bug 2031 fixed: redirection after category deletion preserves the current
node in the category tree.
+ the confirmation message is displayed after redirect, thanks to session
git-svn-id: http://piwigo.org/svn/branches/2.1@8167 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/cat_list.php | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/admin/cat_list.php b/admin/cat_list.php index 662edbc88..848df3eb3 100644 --- a/admin/cat_list.php +++ b/admin/cat_list.php @@ -87,9 +87,15 @@ $navigation.= '</a>'; if (isset($_GET['delete']) and is_numeric($_GET['delete']) and !is_adviser()) { delete_categories(array($_GET['delete'])); - array_push($page['infos'], l10n('Virtual category deleted')); + $_SESSION['page_infos'] = array(l10n('Virtual category deleted')); update_global_rank(); - redirect(get_root_url().'admin.php?page=cat_list'); + + $redirect_url = get_root_url().'admin.php?page=cat_list'; + if (isset($_GET['parent_id'])) + { + $redirect_url.= '&parent_id='.$_GET['parent_id']; + } + redirect($redirect_url); } // request to add a virtual category else if (isset($_POST['submitAdd'])) |