From 97ffc006b0897ee509fb7282569d759be157eb86 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 13 Apr 2023 15:43:21 +0000 Subject: [PATCH] Coding Standards: Use strict comparison in `wp-includes/http.php`. Follow-up to [17914], [55642]. Props aristath, poena, afercia, SergeyBiryukov. See #57839. Built from https://develop.svn.wordpress.org/trunk@55650 git-svn-id: http://core.svn.wordpress.org/trunk@55162 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/http.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/http.php b/wp-includes/http.php index a8468ca17c..b48c3b1cb7 100644 --- a/wp-includes/http.php +++ b/wp-includes/http.php @@ -372,7 +372,7 @@ function wp_http_supports( $capabilities = array(), $url = null ) { $count = count( $capabilities ); // If we have a numeric $capabilities array, spoof a wp_remote_request() associative $args array. - if ( $count && count( array_filter( array_keys( $capabilities ), 'is_numeric' ) ) == $count ) { + if ( $count && count( array_filter( array_keys( $capabilities ), 'is_numeric' ) ) === $count ) { $capabilities = array_combine( array_values( $capabilities ), array_fill( 0, $count, true ) ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index bee9ffe618..53e106143c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-55649'; +$wp_version = '6.3-alpha-55650'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.