From 7f96fff66f28cd16cc5747701079cc3db1db29dd Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 24 May 2010 15:49:12 +0000 Subject: [PATCH] Don't issue dupe slug error if provided slug matches name derived slug. fixes #12349 git-svn-id: http://svn.automattic.com/wordpress/trunk@14839 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/taxonomy.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index e8a62f0c11..6f531178be 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -1586,9 +1586,11 @@ function wp_insert_term( $term, $taxonomy, $args = array() ) { $name = stripslashes($name); $description = stripslashes($description); + $slug_from_name = sanitize_title($name); + if ( empty($slug) ) - $slug = sanitize_title($name); - elseif ( is_term($slug) ) + $slug = $slug_from_name; + elseif ( is_term($slug) && ( $slug != $slug_from_name ) ) return new WP_Error('term_slug_exists', __('A term with the slug provided already exists.')); $term_group = 0;