Ticket #21977: 21977.diff
File 21977.diff, 926 bytes (added by , 12 years ago) |
---|
-
wp-includes/class-wp-xmlrpc-server.php
1561 1561 if ( empty( $term_data['name'] ) ) 1562 1562 return new IXR_Error( 403, __( 'The term name cannot be empty.' ) ); 1563 1563 1564 if ( isset( $content_struct['parent'] ) ) {1564 if ( ! empty( $content_struct['parent'] ) ) { 1565 1565 if ( ! $taxonomy['hierarchical'] ) 1566 1566 return new IXR_Error( 403, __( 'This taxonomy is not hierarchical.' ) ); 1567 1567 … … 1660 1660 return new IXR_Error( 403, __( 'The term name cannot be empty.' ) ); 1661 1661 } 1662 1662 1663 if ( isset( $content_struct['parent'] ) ) {1663 if ( ! empty( $content_struct['parent'] ) ) { 1664 1664 if ( ! $taxonomy['hierarchical'] ) 1665 1665 return new IXR_Error( 403, __( "This taxonomy is not hierarchical so you can't set a parent." ) ); 1666 1666