mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-04 17:20:07 +00:00
Coding Standards: Use strict comparison for more count() calls.
Follow-up to [47848]. Props mukesh27. Fixes #50232. See #49542. git-svn-id: https://develop.svn.wordpress.org/trunk@47851 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -824,7 +824,7 @@ class WP_Date_Query {
|
||||
|
||||
case 'BETWEEN':
|
||||
case 'NOT BETWEEN':
|
||||
if ( ! is_array( $value ) || 2 != count( $value ) ) {
|
||||
if ( ! is_array( $value ) || 2 !== count( $value ) ) {
|
||||
$value = array( $value, $value );
|
||||
} else {
|
||||
$value = array_values( $value );
|
||||
|
||||
Reference in New Issue
Block a user