Changeset 8646 for trunk/wp-includes/query.php
- Timestamp:
- 08/14/2008 05:00:37 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/query.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/query.php
r8637 r8646 687 687 $this->is_tax = false; 688 688 foreach ( $GLOBALS['wp_taxonomies'] as $t ) { 689 if ( isset($t->query_var) && '' != $qv[$t->query_var] ) {689 if ( isset($t->query_var) && isset($qv[$t->query_var]) && '' != $qv[$t->query_var] ) { 690 690 $this->is_tax = true; 691 691 break;
Note: See TracChangeset
for help on using the changeset viewer.