aboutsummaryrefslogtreecommitdiffstats
path: root/admin/cat_list.php
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2009-12-15 00:33:57 +0000
committerplegall <plg@piwigo.org>2009-12-15 00:33:57 +0000
commit742e2a7c0ac86e9bcce2fa6eef65214e869cd19c (patch)
tree39ece70263b1fb2ef881352f11e1f4a38b94afd7 /admin/cat_list.php
parent8bbbe6c7943296a81df1c232ca7de0329295477f (diff)
bug 1329 fixed: add a check_input_parameter function to prevent hacking
attempts. git-svn-id: http://piwigo.org/svn/branches/2.0@4495 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/cat_list.php')
-rw-r--r--admin/cat_list.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/admin/cat_list.php b/admin/cat_list.php
index 3a9a1fc46..43403e4f9 100644
--- a/admin/cat_list.php
+++ b/admin/cat_list.php
@@ -64,6 +64,8 @@ function save_categories_order($categories)
// | initialization |
// +-----------------------------------------------------------------------+
+check_input_parameter('parent_id', @$_GET['parent_id'], false, PATTERN_ID);
+
$categories = array();
$base_url = get_root_url().'admin.php?page=cat_list';