Changeset 36244
- Timestamp:
- 01/09/2016 03:15:55 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r36243 r36244 491 491 function unregister_taxonomy( $taxonomy ) { 492 492 if ( ! taxonomy_exists( $taxonomy ) ) { 493 return new WP_Error( 'invalid_taxonomy', __( 'Invalid Taxonomy' ) );493 return new WP_Error( 'invalid_taxonomy', __( 'Invalid taxonomy' ) ); 494 494 } 495 495 … … 2995 2995 2996 2996 if ( ! taxonomy_exists( $taxonomy ) ) { 2997 return new WP_Error( 'invalid_taxonomy', __( 'Invalid Taxonomy' ) );2997 return new WP_Error( 'invalid_taxonomy', __( 'Invalid taxonomy' ) ); 2998 2998 } 2999 2999
Note: See TracChangeset
for help on using the changeset viewer.