General: Compare values as strings in `WP_List_Util::filter()` and `::sort_callback()`.

This aims to preserve backward compatibility for code relying on type juggling when using the `wp_list_filter()` function, e.g. comparing a numeric string to an integer.

Follow-up to [55908].

Props azaozz, jeremyfelt, david.binda.
See #57839.
Built from https://develop.svn.wordpress.org/trunk@56137


git-svn-id: http://core.svn.wordpress.org/trunk@55649 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2023-07-05 10:46:26 +00:00
parent 900a79dc53
commit 7497b1099f
2 changed files with 8 additions and 4 deletions

View File

@ -116,12 +116,16 @@ class WP_List_Util {
foreach ( $args as $m_key => $m_value ) {
if ( is_array( $obj ) ) {
// Treat object as an array.
if ( array_key_exists( $m_key, $obj ) && ( $m_value === $obj[ $m_key ] ) ) {
if ( array_key_exists( $m_key, $obj )
&& ( (string) $m_value === (string) $obj[ $m_key ] )
) {
$matched++;
}
} elseif ( is_object( $obj ) ) {
// Treat object as an object.
if ( isset( $obj->{$m_key} ) && ( $m_value === $obj->{$m_key} ) ) {
if ( isset( $obj->{$m_key} )
&& ( (string) $m_value === (string) $obj->{$m_key} )
) {
$matched++;
}
}
@ -276,7 +280,7 @@ class WP_List_Util {
continue;
}
if ( $a[ $field ] === $b[ $field ] ) {
if ( (string) $a[ $field ] === (string) $b[ $field ] ) {
continue;
}

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.3-beta3-56136';
$wp_version = '6.3-beta3-56137';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.