diff --git wp-admin/includes/taxonomy.php wp-admin/includes/taxonomy.php
index fdc6d64..6ab4c09 100644
--- wp-admin/includes/taxonomy.php
+++ wp-admin/includes/taxonomy.php
@@ -235,18 +235,3 @@ function get_terms_to_edit( $post_id, $taxonomy = 'post_tag' ) {
 
 	return $tags_to_edit;
 }
-
-/**
- * {@internal Missing Short Description}}
- *
- * @since 2.8.0
- *
- * @param unknown_type $tag_name
- * @return unknown
- */
-function wp_create_term($tag_name, $taxonomy = 'post_tag') {
-	if ( $id = term_exists($tag_name, $taxonomy) )
-		return $id;
-
-	return wp_insert_term($tag_name, $taxonomy);
-}
diff --git wp-includes/taxonomy.php wp-includes/taxonomy.php
index 93df284..6d7ccd3 100644
--- wp-includes/taxonomy.php
+++ wp-includes/taxonomy.php
@@ -2159,6 +2159,21 @@ function wp_insert_term( $term, $taxonomy, $args = array() ) {
 }
 
 /**
+ * {@internal Missing Short Description}}
+ *
+ * @since 2.8.0
+ *
+ * @param unknown_type $tag_name
+ * @return unknown
+ */
+function wp_create_term($tag_name, $taxonomy = 'post_tag') {
+	if ( $id = term_exists($tag_name, $taxonomy) )
+		return $id;
+
+	return wp_insert_term($tag_name, $taxonomy);
+}
+
+/**
  * Create Term and Taxonomy Relationships.
  *
  * Relates an object (post, link etc) to a term and taxonomy type. Creates the
