Changeset 47808 for trunk/src/wp-includes/class-wp-list-util.php
- Timestamp:
- 05/16/2020 06:40:52 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-list-util.php
r46586 r47808 113 113 114 114 if ( 115 ( 'AND' == $operator && $matched == $count ) ||116 ( 'OR' == $operator && $matched > 0 ) ||117 ( 'NOT' == $operator && 0 == $matched )115 ( 'AND' === $operator && $matched == $count ) || 116 ( 'OR' === $operator && $matched > 0 ) || 117 ( 'NOT' === $operator && 0 == $matched ) 118 118 ) { 119 119 $filtered[ $key ] = $obj;
Note: See TracChangeset
for help on using the changeset viewer.