Skip to content

Commit

Permalink
Fix typo that was causing tests to fail.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Jun 21, 2013
1 parent fe2ba01 commit 7ab5986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Network/Email/SmtpTransport.php
Expand Up @@ -120,7 +120,7 @@ protected function _connect() {
$this->_socket->enableCrypto('tls');
$this->_smtpSend("EHLO {$host}", '250');
}
} catch (Errpr\SocketException $e) {
} catch (Error\SocketException $e) {
if ($this->_config['tls']) {
throw new Error\SocketException(__d('cake_dev', 'SMTP server did not accept the connection or trying to connect to non TLS SMTP server using TLS.'));
}
Expand Down

0 comments on commit 7ab5986

Please sign in to comment.