aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--admin/cat_list.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/cat_list.php b/admin/cat_list.php
index b5404ea0c..00bb4a5ac 100644
--- a/admin/cat_list.php
+++ b/admin/cat_list.php
@@ -208,7 +208,7 @@ UPDATE '.CATEGORIES_TABLE.'
array_push($categories, $current);
array_shift($categories);
}
- update_global_rank($_GET['parent_id']);
+ update_global_rank(@$_GET['parent_id']);
}
else if (isset($_GET['down']) and is_numeric($_GET['down']))
{
@@ -268,7 +268,7 @@ UPDATE '.CATEGORIES_TABLE.'
array_unshift($categories, $current);
array_pop($categories);
}
- update_global_rank($_GET['parent_id']);
+ update_global_rank(@$_GET['parent_id']);
}
reset($categories);
// +-----------------------------------------------------------------------+