Coding Standards: Use strict comparison in `WP_List_Util::filter()`.
Correct comments per the documentation standards. See #49542, #49572. Built from https://develop.svn.wordpress.org/trunk@48421 git-svn-id: http://core.svn.wordpress.org/trunk@48190 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b03053eb2a
commit
3df6964fc8
|
@ -105,26 +105,22 @@ class WP_List_Util {
|
|||
$matched = 0;
|
||||
|
||||
foreach ( $args as $m_key => $m_value ) {
|
||||
|
||||
if ( is_array( $obj ) ) {
|
||||
|
||||
// Treat object as an array
|
||||
// Treat object as an array.
|
||||
if ( array_key_exists( $m_key, $obj ) && ( $m_value == $obj[ $m_key ] ) ) {
|
||||
$matched++;
|
||||
}
|
||||
} elseif ( is_object( $obj ) ) {
|
||||
|
||||
// Treat object as an object
|
||||
// Treat object as an object.
|
||||
if ( isset( $obj->{$m_key} ) && ( $m_value == $obj->{$m_key} ) ) {
|
||||
$matched++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (
|
||||
( 'AND' === $operator && $matched == $count ) ||
|
||||
( 'OR' === $operator && $matched > 0 ) ||
|
||||
( 'NOT' === $operator && 0 == $matched )
|
||||
if ( ( 'AND' === $operator && $matched === $count )
|
||||
|| ( 'OR' === $operator && $matched > 0 )
|
||||
|| ( 'NOT' === $operator && 0 === $matched )
|
||||
) {
|
||||
$filtered[ $key ] = $obj;
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.5-beta1-48420';
|
||||
$wp_version = '5.5-beta1-48421';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue