From 9b1dbf74179ce642e18610a63a6f14405498e8f6 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 18 Jul 2014 23:55:47 +0000 Subject: [PATCH] Use an existing string. see #19205. git-svn-id: https://develop.svn.wordpress.org/trunk@29234 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/taxonomy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/taxonomy.php b/src/wp-includes/taxonomy.php index 5c7ce930e1..d942734324 100644 --- a/src/wp-includes/taxonomy.php +++ b/src/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;