Changeset 47808 for trunk/src/wp-includes/class-wp-meta-query.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-meta-query.php
r47550 r47808 139 139 } 140 140 141 if ( isset( $meta_query['relation'] ) && strtoupper( $meta_query['relation'] ) == 'OR') {141 if ( isset( $meta_query['relation'] ) && 'OR' === strtoupper( $meta_query['relation'] ) ) { 142 142 $this->relation = 'OR'; 143 143 } else { … … 296 296 } 297 297 298 if ( 'NUMERIC' == $meta_type ) {298 if ( 'NUMERIC' === $meta_type ) { 299 299 $meta_type = 'SIGNED'; 300 300 }
Note: See TracChangeset
for help on using the changeset viewer.