From ccf7a5ef24dab10920e84d0cb3dc10d21d8f4a36 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 27 Jul 2016 10:43:27 +0000 Subject: [PATCH] I18N: After [38077], merge two duplicate strings in `wp_insert_term()` and `wp_update_term()`. Props ramiy. See #18218. Built from https://develop.svn.wordpress.org/trunk@38162 git-svn-id: http://core.svn.wordpress.org/trunk@38103 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/taxonomy.php | 9 +++++---- wp-includes/version.php | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index 282ee7b8c7..104a4afdb5 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -2241,10 +2241,10 @@ function wp_insert_term( $term, $taxonomy, $args = array() ) { if ( is_wp_error( $term ) ) { return $term; } - if ( is_int($term) && 0 == $term ) { + if ( is_int( $term ) && 0 == $term ) { return new WP_Error( 'invalid_term_id', __( 'Invalid term ID.' ) ); } - if ( '' == trim($term) ) { + if ( '' == trim( $term ) ) { return new WP_Error( 'empty_term_name', __( 'A name is required for this term.' ) ); } $defaults = array( 'alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => ''); @@ -2845,8 +2845,9 @@ function wp_update_term( $term_id, $taxonomy, $args = array() ) { $parsed_args['name'] = $name; $parsed_args['description'] = $description; - if ( '' == trim($name) ) - return new WP_Error('empty_term_name', __('A name is required for this term')); + if ( '' == trim( $name ) ) { + return new WP_Error( 'empty_term_name', __( 'A name is required for this term.' ) ); + } if ( $parsed_args['parent'] > 0 && ! term_exists( (int) $parsed_args['parent'] ) ) { return new WP_Error( 'missing_parent', __( 'Parent term does not exist.' ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index e797702e67..41b40653a2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-beta4-38161'; +$wp_version = '4.6-beta4-38162'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.