From ef14aed9a20fa7d4313292bd94894f1f1be78a5e Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 18 Jul 2014 23:56:14 +0000 Subject: [PATCH] Use an existing string. see #19205. Built from https://develop.svn.wordpress.org/trunk@29234 git-svn-id: http://core.svn.wordpress.org/trunk@29018 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/taxonomy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index 5c7ce930e1..d942734324 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -2421,7 +2421,7 @@ function wp_insert_term( $term, $taxonomy, $args = array() ) { $args = wp_parse_args( $args, $defaults ); if ( $args['parent'] > 0 && ! term_exists( (int) $args['parent'] ) ) { - return new WP_Error( 'missing_parent', __( 'The selected parent term no longer exists' ) ); + return new WP_Error( 'missing_parent', __( 'Parent term does not exist.' ) ); } $args['name'] = $term; $args['taxonomy'] = $taxonomy;