Need to explicitly set the $cat var, in case globals are turned off.

git-svn-id: http://svn.automattic.com/wordpress/trunk@968 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
emc3 2004-03-10 19:46:48 +00:00
parent 684cb32ce0
commit 74638831a4
1 changed files with 2 additions and 1 deletions

View File

@ -48,7 +48,8 @@ case 'addcat':
$cat_name= addslashes(stripslashes(stripslashes($HTTP_POST_VARS['cat_name'])));
$category_nicename = sanitize_title($cat_name);
$category_description = addslashes(stripslashes(stripslashes($HTTP_POST_VARS['category_description'])));
$cat = intval($HTTP_POST_VARS['cat']);
$wpdb->query("INSERT INTO $tablecategories (cat_ID, cat_name, category_nicename, category_description, category_parent) VALUES ('0', '$cat_name', '$category_nicename', '$category_description', '$cat')");
header('Location: categories.php#addcat');