Coding Standards: Use strict comparison in wp-includes/class-wp-http-ixr-client.php.

Follow-up to [16064], [16871], [17928].

See #53359.

git-svn-id: https://develop.svn.wordpress.org/trunk@51879 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2021-10-01 14:59:31 +00:00
parent f6755ded9f
commit 4226e71828

View File

@@ -97,7 +97,7 @@ class WP_HTTP_IXR_Client extends IXR_Client {
return false;
}
if ( 200 != wp_remote_retrieve_response_code( $response ) ) {
if ( 200 !== wp_remote_retrieve_response_code( $response ) ) {
$this->error = new IXR_Error( -32301, 'transport error - HTTP status code was not 200 (' . wp_remote_retrieve_response_code( $response ) . ')' );
return false;
}