Changeset 16511 for trunk/wp-includes/taxonomy.php
- Timestamp:
- 11/20/2010 09:10:20 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/taxonomy.php
r16467 r16511 540 540 foreach ( $taxonomies as $taxonomy ) { 541 541 if ( ! taxonomy_exists( $taxonomy ) ) 542 return ' AND 0 = 1';542 return array( 'join' => '', 'where' => ' AND 0 = 1'); 543 543 } 544 544 … … 593 593 } 594 594 } 595 595 596 return compact( 'join', 'where' ); 596 597 }
Note: See TracChangeset
for help on using the changeset viewer.