- Timestamp:
- 12/29/2016 06:44:59 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php
r39621 r39648 322 322 323 323 if ( ! $term || $term->taxonomy !== $this->taxonomy ) { 324 return new WP_Error( 'rest_term_invalid', __( "Term doesn't exist."), array( 'status' => 404 ) );324 return new WP_Error( 'rest_term_invalid', __( 'Term does not exist.' ), array( 'status' => 404 ) ); 325 325 } 326 326 … … 375 375 376 376 if ( ! $parent ) { 377 return new WP_Error( 'rest_term_invalid', __( "Parent term doesn't exist."), array( 'status' => 400 ) );377 return new WP_Error( 'rest_term_invalid', __( 'Parent term does not exist.' ), array( 'status' => 400 ) ); 378 378 } 379 379 } … … 454 454 455 455 if ( ! $term ) { 456 return new WP_Error( 'rest_term_invalid', __( "Term doesn't exist."), array( 'status' => 404 ) );456 return new WP_Error( 'rest_term_invalid', __( 'Term does not exist.' ), array( 'status' => 404 ) ); 457 457 } 458 458 … … 482 482 483 483 if ( ! $parent ) { 484 return new WP_Error( 'rest_term_invalid', __( "Parent term doesn't exist."), array( 'status' => 400 ) );484 return new WP_Error( 'rest_term_invalid', __( 'Parent term does not exist.' ), array( 'status' => 400 ) ); 485 485 } 486 486 } … … 543 543 544 544 if ( ! $term ) { 545 return new WP_Error( 'rest_term_invalid', __( "Term doesn't exist."), array( 'status' => 404 ) );545 return new WP_Error( 'rest_term_invalid', __( 'Term does not exist.' ), array( 'status' => 404 ) ); 546 546 } 547 547
Note: See TracChangeset
for help on using the changeset viewer.