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
This commit is contained in:
Sergey Biryukov 2021-04-06 13:47:02 +00:00
parent 48cd688076
commit 53c0882200
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

View File

@ -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.