diff --git a/src/wp-includes/class-http.php b/src/wp-includes/class-http.php index e9ff205142..d3a893787c 100644 --- a/src/wp-includes/class-http.php +++ b/src/wp-includes/class-http.php @@ -356,6 +356,7 @@ class WP_Http { $options['proxy'] = new Requests_Proxy_HTTP( $proxy->host() . ':' . $proxy->port() ); if ( $proxy->use_authentication() ) { + $options['proxy']->use_authentication = true; $options['proxy']->user = $proxy->username(); $options['proxy']->pass = $proxy->password(); }