Changeset 55988 for trunk/src/wp-includes/class-wp-meta-query.php
- Timestamp:
- 06/22/2023 02:34:56 PM (3 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-meta-query.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-meta-query.php
r55732 r55988 375 375 * be LEFT. Otherwise posts with no metadata will be excluded from results. 376 376 */ 377 if ( false !== strpos( $sql['join'], 'LEFT JOIN' ) ) {377 if ( str_contains( $sql['join'], 'LEFT JOIN' ) ) { 378 378 $sql['join'] = str_replace( 'INNER JOIN', 'LEFT JOIN', $sql['join'] ); 379 379 }
Note: See TracChangeset
for help on using the changeset viewer.