X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/4feeb71a9d812a9ae371c28a3d8b442a4394ded7..607b7e02d77e7326161e8ec15639052d2040f745:/wp-includes/class-IXR.php diff --git a/wp-includes/class-IXR.php b/wp-includes/class-IXR.php index 2fee046d..a8e31983 100644 --- a/wp-includes/class-IXR.php +++ b/wp-includes/class-IXR.php @@ -168,7 +168,7 @@ class IXR_Value { { $expected = 0; foreach ($array as $key => $value) { - if ((string)$key != (string)$expected) { + if ((string)$key !== (string)$expected) { return true; } $expected++; @@ -249,7 +249,7 @@ class IXR_Message $element_limit = 30000; if ( function_exists( 'apply_filters' ) ) { /** - * Filter the number of elements to parse in an XML-RPC response. + * Filters the number of elements to parse in an XML-RPC response. * * @since 4.0.0 * @@ -273,7 +273,7 @@ class IXR_Message $chunk_size = 262144; /** - * Filter the chunk size that can be used to parse an XML-RPC reponse message. + * Filters the chunk size that can be used to parse an XML-RPC reponse message. * * @since 4.4.0 *