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:
parent
48cd688076
commit
53c0882200
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue