I18N: After [38077], merge two duplicate strings in wp_insert_term()
and wp_update_term()
.
Props ramiy. See #18218. git-svn-id: https://develop.svn.wordpress.org/trunk@38162 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
d1aacf419e
commit
a2175c9ede
@ -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.' ) );
|
||||
|
Loading…
Reference in New Issue
Block a user