From aaf9bcf21d0876eea03f77dbba0d81a3a6a0df3a Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Sun, 18 Apr 2010 04:01:19 +0000 Subject: [PATCH] Fix typo in Proxy Authorization header. Props thales.tede. Fixes #12995 git-svn-id: https://develop.svn.wordpress.org/trunk@14129 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/class-http.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/class-http.php b/wp-includes/class-http.php index 181c5e6a6a..ee08e424c3 100644 --- a/wp-includes/class-http.php +++ b/wp-includes/class-http.php @@ -1591,7 +1591,7 @@ class WP_HTTP_Proxy { * @return string */ function authentication_header() { - return 'Proxy-Authentication: Basic ' . base64_encode( $this->authentication() ); + return 'Proxy-Authorization: Basic ' . base64_encode( $this->authentication() ); } /**