From cf0e90578e5b5d0549794fc6906a9b7b1bb0f631 Mon Sep 17 00:00:00 2001 From: dd32 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: http://svn.automattic.com/wordpress/trunk@14129 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 181c5e6a6..ee08e424c 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() ); } /**