Make WordPress Core


Ignore:
Timestamp:
12/20/2007 08:59:53 PM (19 years ago)
Author:
westi
Message:

Fix query variable naming errors.

File:
1 edited

Legend:

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

    r6412 r6435  
    561561                        }
    562562
    563                         if ( !is_array($qv['category___not_in']) || empty($qv['category__not_in']) ) {
     563                        if ( !is_array($qv['category__not_in']) || empty($qv['category__not_in']) ) {
    564564                                $qv['category__not_in'] = array();
    565565                        } else {
     
    588588                        }
    589589
    590                         if ( !is_array($qv['tag___not_in']) || empty($qv['tag__not_in']) ) {
     590                        if ( !is_array($qv['tag__not_in']) || empty($qv['tag__not_in']) ) {
    591591                                $qv['tag__not_in'] = array();
    592592                        } else {
Note: See TracChangeset for help on using the changeset viewer.