diff --git a/wp-includes/class-wp-http-streams.php b/wp-includes/class-wp-http-streams.php index 7df0af651f..a7f73d84ce 100644 --- a/wp-includes/class-wp-http-streams.php +++ b/wp-includes/class-wp-http-streams.php @@ -230,8 +230,8 @@ class WP_Http_Streams { } if ( is_array( $parsed_args['headers'] ) ) { - foreach ( (array) $parsed_args['headers'] as $header => $headerValue ) { - $headers .= $header . ': ' . $headerValue . "\r\n"; + foreach ( (array) $parsed_args['headers'] as $header => $header_value ) { + $headers .= $header . ': ' . $header_value . "\r\n"; } } else { $headers .= $parsed_args['headers']; diff --git a/wp-includes/version.php b/wp-includes/version.php index cfe6c76477..c5f97e901e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-52962'; +$wp_version = '6.0-alpha-52963'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.