From b4092e374de749c6010bd85041aee5c6aa25e412 Mon Sep 17 00:00:00 2001 From: dmromanov Date: Fri, 16 Aug 2013 14:06:36 +0400 Subject: [PATCH] Corrected spelling --- lib/Cake/Network/Http/HttpSocket.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Cake/Network/Http/HttpSocket.php b/lib/Cake/Network/Http/HttpSocket.php index 9d50fd02763..92b792da736 100644 --- a/lib/Cake/Network/Http/HttpSocket.php +++ b/lib/Cake/Network/Http/HttpSocket.php @@ -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])); } @@ -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)); }