Wordpress/wp-admin/edit-form-ajax-cat.php
Ryan Boren 40c98305df Don't double escape.
git-svn-id: https://develop.svn.wordpress.org/trunk@2925 602fd350-edb4-49c9-b593-d223f7449a82
2005-09-28 20:41:53 +00:00

24 lines
522 B
PHP

<?php
require_once('../wp-config.php');
require_once('admin-functions.php');
get_currentuserinfo();
if ( !current_user_can('manage_categories') )
die('-1');
function get_out_now() { exit; }
add_action('shutdown', 'get_out_now', -1);
$cat_name = rawurldecode($_GET['ajaxnewcat']);
if ( !$category_nicename = sanitize_title($cat_name) )
die('0');
if ( $already = category_exists($cat_name) )
die((string) $already);
$new_cat_id = wp_create_category($cat_name);
die((string) $new_cat_id);
?>