From 53c0882200b489f64b27f20d0e15bd8c8cae462f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 6 Apr 2021 13:47:02 +0000 Subject: [PATCH] Coding Standards: Use strict comparison in `wp-admin/includes/credits.php`. See #52627. Built from https://develop.svn.wordpress.org/trunk@50665 git-svn-id: http://core.svn.wordpress.org/trunk@50277 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/credits.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/credits.php b/wp-admin/includes/credits.php index 23fd532fc6..328bb84c34 100644 --- a/wp-admin/includes/credits.php +++ b/wp-admin/includes/credits.php @@ -44,7 +44,7 @@ function wp_credits( $version = '', $locale = '' ) { $response = wp_remote_get( $url, $options ); - if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) { + if ( is_wp_error( $response ) || 200 !== wp_remote_retrieve_response_code( $response ) ) { return false; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 32f8f22ca0..b95e221492 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-50664'; +$wp_version = '5.8-alpha-50665'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.