Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Corrected spelling
  • Loading branch information
dmromanov committed Aug 16, 2013
1 parent 56ef44f commit b4092e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Network/Http/HttpSocket.php
Expand Up @@ -604,7 +604,7 @@ protected function _setAuth() {
throw new SocketException(__d('cake_dev', 'Unknown authentication method.'));
}
if (!method_exists($authClass, 'authentication')) {
throw new SocketException(__d('cake_dev', 'The %s do not support authentication.', $authClass));
throw new SocketException(__d('cake_dev', 'The %s does not support authentication.', $authClass));
}
call_user_func_array("$authClass::authentication", array($this, &$this->_auth[$method]));
}
Expand Down Expand Up @@ -633,7 +633,7 @@ protected function _setProxy() {
throw new SocketException(__d('cake_dev', 'Unknown authentication method for proxy.'));
}
if (!method_exists($authClass, 'proxyAuthentication')) {
throw new SocketException(__d('cake_dev', 'The %s do not support proxy authentication.', $authClass));
throw new SocketException(__d('cake_dev', 'The %s does not support proxy authentication.', $authClass));
}
call_user_func_array("$authClass::proxyAuthentication", array($this, &$this->_proxy));
}
Expand Down

0 comments on commit b4092e3

Please sign in to comment.