Make WordPress Core


Ignore:
Timestamp:
08/14/2008 05:00:37 PM (18 years ago)
Author:
ryan
Message:

Notice fixes. Props DD32. see #7509

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/query.php

    r8637 r8646  
    687687                $this->is_tax = false;
    688688                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] ) {
    690690                        $this->is_tax = true;
    691691                        break;
Note: See TracChangeset for help on using the changeset viewer.