Make WordPress Core

Ticket #16373: 16373.000.diff

File 16373.000.diff, 920 bytes (added by jondavis, 14 years ago)

Suggested fix (works for me)

  • wp-includes/query.php

     
    15721572                        // pagename can be set and empty depending on matched rewrite rules. Ignore an empty pagename.
    15731573                        if ( isset($_query['pagename']) && '' == $_query['pagename'] )
    15741574                                unset($_query['pagename']);
    1575                         if ( empty($_query) || !array_diff( array_keys($_query), array('preview', 'page', 'paged', 'cpage') ) ) {
     1575                        if ( empty($_query) || !array_diff( array_keys($_query), array_keys($this->query_vars) ) ) {
    15761576                                $this->is_page = true;
    15771577                                $this->is_home = false;
    15781578                                $qv['page_id'] = get_option('page_on_front');
     
    17191719                                'taxonomy' => 'category',
    17201720                                'terms' => $q['category__not_in'],
    17211721                                'operator' => 'NOT IN',
    1722                                 'include_children' => false 
     1722                                'include_children' => false
    17231723                        );
    17241724                }
    17251725