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
This commit is contained in:
dd32 2010-04-18 04:01:19 +00:00
parent 7058bb3db8
commit cf0e90578e
1 changed files with 1 additions and 1 deletions

View File

@ -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() );
}
/**