mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
HTTP API: Revert changeset [52315].
Reverting Requests 2.0.0 changes and moving to WordPress 6.0 cycle. Why? The namespace and file case renaming revealed 2 issues in Core's upgrader process. See https://core.trac.wordpress.org/ticket/54504#comment:22 for more information. See #54562, #54504. Built from https://develop.svn.wordpress.org/trunk@52327 git-svn-id: http://core.svn.wordpress.org/trunk@51919 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
18d741be37
commit
8045f6a42b
@ -378,7 +378,7 @@ class WP_Http {
|
|||||||
// Check for proxies.
|
// Check for proxies.
|
||||||
$proxy = new WP_HTTP_Proxy();
|
$proxy = new WP_HTTP_Proxy();
|
||||||
if ( $proxy->is_enabled() && $proxy->send_through_proxy( $url ) ) {
|
if ( $proxy->is_enabled() && $proxy->send_through_proxy( $url ) ) {
|
||||||
$options['proxy'] = new WpOrg\Requests\Proxy\Http( $proxy->host() . ':' . $proxy->port() );
|
$options['proxy'] = new WpOrg\Requests\Proxy\HTTP( $proxy->host() . ':' . $proxy->port() );
|
||||||
|
|
||||||
if ( $proxy->use_authentication() ) {
|
if ( $proxy->use_authentication() ) {
|
||||||
$options['proxy']->use_authentication = true;
|
$options['proxy']->use_authentication = true;
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.9-beta1-52326';
|
$wp_version = '5.9-beta1-52327';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user