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
This commit is contained in:
Dion Hulse 2010-04-18 04:01:19 +00:00
parent b85b748fdc
commit aaf9bcf21d
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() );
}
/**