From 4226e71828b4da5f7d0b9ffaa571680a9f0d51ab Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 1 Oct 2021 14:59:31 +0000 Subject: [PATCH] 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 --- src/wp-includes/class-wp-http-ixr-client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/class-wp-http-ixr-client.php b/src/wp-includes/class-wp-http-ixr-client.php index 5de31618fa..fef16e831d 100644 --- a/src/wp-includes/class-wp-http-ixr-client.php +++ b/src/wp-includes/class-wp-http-ixr-client.php @@ -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; }