Changeset 11216
- Timestamp:
- 05/06/2009 05:03:59 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/taxonomy.php
r11204 r11216 613 613 614 614 foreach ( (array) $taxonomies as $taxonomy ) { 615 if ( ! is_taxonomy($taxonomy) ) 616 return new WP_Error('invalid_taxonomy', __('Invalid Taxonomy')); 615 if ( ! is_taxonomy($taxonomy) ) { 616 $error = & new WP_Error('invalid_taxonomy', __('Invalid Taxonomy')); 617 return $error; 618 } 617 619 } 618 620
Note: See TracChangeset
for help on using the changeset viewer.