diff --git a/admin/cat_options.php b/admin/cat_options.php index 21eb13434..29e583150 100644 --- a/admin/cat_options.php +++ b/admin/cat_options.php @@ -36,7 +36,9 @@ include_once(PHPWG_ROOT_PATH.'admin/include/isadmin.inc.php'); // print '
';
 // print_r($_POST);
 // print '
'; -if (isset($_POST['falsify']) and count($_POST['cat_true']) > 0) +if (isset($_POST['falsify']) + and isset($_POST['cat_true']) + and count($_POST['cat_true']) > 0) { switch ($_GET['section']) { @@ -86,7 +88,9 @@ UPDATE '.CATEGORIES_TABLE.' } } } -else if (isset($_POST['trueify']) and count($_POST['cat_false']) > 0) +else if (isset($_POST['trueify']) + and isset($_POST['cat_false']) + and count($_POST['cat_false']) > 0) { switch ($_GET['section']) {