mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-07 08:01:54 +01:00
Coding Standards: Rename the $requestPath
variable to $request_path
in WP_Http_Streams::request()
.
This fixes a `Variable "$requestPath" is not in valid snake_case format` WPCS warning. Follow-up to [8516], [51825], [51929], [51940], [52960]. Props azouamauriac. See #54728. Built from https://develop.svn.wordpress.org/trunk@52961 git-svn-id: http://core.svn.wordpress.org/trunk@52550 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
47d2a73beb
commit
236e1d4ee3
@ -206,12 +206,12 @@ class WP_Http_Streams {
|
||||
stream_set_timeout( $handle, $timeout, $utimeout );
|
||||
|
||||
if ( $proxy->is_enabled() && $proxy->send_through_proxy( $url ) ) { // Some proxies require full URL in this field.
|
||||
$requestPath = $url;
|
||||
$request_path = $url;
|
||||
} else {
|
||||
$requestPath = $parsed_url['path'] . ( isset( $parsed_url['query'] ) ? '?' . $parsed_url['query'] : '' );
|
||||
$request_path = $parsed_url['path'] . ( isset( $parsed_url['query'] ) ? '?' . $parsed_url['query'] : '' );
|
||||
}
|
||||
|
||||
$strHeaders = strtoupper( $parsed_args['method'] ) . ' ' . $requestPath . ' HTTP/' . $parsed_args['httpversion'] . "\r\n";
|
||||
$strHeaders = strtoupper( $parsed_args['method'] ) . ' ' . $request_path . ' HTTP/' . $parsed_args['httpversion'] . "\r\n";
|
||||
|
||||
$include_port_in_host_header = (
|
||||
( $proxy->is_enabled() && $proxy->send_through_proxy( $url ) )
|
||||
|
@ -16,7 +16,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.0-alpha-52960';
|
||||
$wp_version = '6.0-alpha-52961';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user