diff options
author | rvelices <rv-github@modusoptimus.com> | 2008-04-20 22:25:40 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2008-04-20 22:25:40 +0000 |
commit | cd30335df7f2a4c3b15c5f2ba181dc1b0444f00a (patch) | |
tree | 08ed00c2786c92b9b7b786f668ebd4816113cca5 /admin/cat_list.php | |
parent | e74943520a928e32a2dd9df1049174594abf89a9 (diff) |
merge r 2306 from trunk to branch-1_7
- merged function ordering() with update_global_rank() and also optimized the queries
git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2307 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/cat_list.php')
-rw-r--r-- | admin/cat_list.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/admin/cat_list.php b/admin/cat_list.php index aac736a21..2b805b105 100644 --- a/admin/cat_list.php +++ b/admin/cat_list.php @@ -60,7 +60,7 @@ function save_categories_order($categories) $fields = array('primary' => array('id'), 'update' => array('rank')); mass_updates(CATEGORIES_TABLE, $fields, $datas); - update_global_rank(@$_GET['parent_id']); + update_global_rank(); } // +-----------------------------------------------------------------------+ @@ -82,7 +82,6 @@ if (isset($_GET['delete']) and is_numeric($_GET['delete']) and !is_adviser()) { delete_categories(array($_GET['delete'])); array_push($page['infos'], l10n('cat_virtual_deleted')); - ordering(); update_global_rank(); } // request to add a virtual category @@ -294,7 +293,7 @@ foreach ($categories as $category) } } // Add a link to Page bottom only if needed (10 or more categories) -if ( isset($category['rank']) and $category['rank'] > 9 ) +if ( isset($category['rank']) and $category['rank'] > 9 ) { $template->assign_block_vars('eop_link', array('ICON'=>'Displayed')); } |