diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-11-08 15:51:29 +0100 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-11-08 15:51:29 +0100 |
commit | 46a1de68a663fd7af1a0a08124738cecc84fd5c7 (patch) | |
tree | e172949e46eb15b6861c9b6945ce62f1d4ca13c0 /system/libraries | |
parent | 3b3782a8e039f70379afd775a2155b8b1ae1334d (diff) | |
parent | 39f118c73d62510d3676ad1ece53c6fe2cc43f64 (diff) |
Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Email.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/system/libraries/Email.php b/system/libraries/Email.php index db6ea8f90..6739db33b 100644 --- a/system/libraries/Email.php +++ b/system/libraries/Email.php @@ -1718,12 +1718,12 @@ class CI_Email { $this->_send_command('hello'); $this->_send_command('starttls'); $crypto = stream_socket_enable_crypto($this->_smtp_connect, TRUE, STREAM_CRYPTO_METHOD_TLS_CLIENT); - } - if ($crypto !== TRUE) - { - $this->_set_error_message('lang:email_smtp_error', $this->_get_smtp_data()); - return FALSE; + if ($crypto !== TRUE) + { + $this->_set_error_message('lang:email_smtp_error', $this->_get_smtp_data()); + return FALSE; + } } return $this->_send_command('hello'); |