Changeset 17436 for branches/3.1/wp-includes/functions.php
- Timestamp:
- 02/09/2011 05:36:23 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.1/wp-includes/functions.php
r17428 r17436 3073 3073 foreach ( $list as $key => $obj ) { 3074 3074 $matched = count( array_intersect_assoc( (array) $obj, $args ) ); 3075 if ( ( 'AND' == $operator && $matched == $count ) 3075 if ( ( 'AND' == $operator && $matched == $count ) 3076 3076 || ( 'OR' == $operator && $matched <= $count ) 3077 3077 || ( 'NOT' == $operator && 0 == $matched ) ) {
Note: See TracChangeset
for help on using the changeset viewer.