Make WordPress Core

Changeset 6745


Ignore:
Timestamp:
02/07/2008 04:04:29 AM (17 years ago)
Author:
ryan
Message:

Remove extra underscores. fixes #5788 for 2.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.3/wp-includes/query.php

    r6510 r6745  
    559559            }
    560560
    561             if ( !is_array($qv['category___not_in']) || empty($qv['category__not_in']) ) {
     561            if ( !is_array($qv['category__not_in']) || empty($qv['category__not_in']) ) {
    562562                $qv['category__not_in'] = array();
    563563            } else {
     
    586586            }
    587587
    588             if ( !is_array($qv['tag___not_in']) || empty($qv['tag__not_in']) ) {
     588            if ( !is_array($qv['tag__not_in']) || empty($qv['tag__not_in']) ) {
    589589                $qv['tag__not_in'] = array();
    590590            } else {
Note: See TracChangeset for help on using the changeset viewer.