Need to explicitly set the $cat var, in case globals are turned off.
git-svn-id: https://develop.svn.wordpress.org/trunk@968 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
d461610486
commit
14c27e0191
|
@ -48,6 +48,7 @@ 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')");
|
||||
|
||||
|
|
Loading…
Reference in New Issue