diff options
author | nisheeth-barthwal <nisheeth.barthwal@nbaztec.co.in> | 2013-03-04 12:50:12 +0100 |
---|---|---|
committer | nisheeth-barthwal <nisheeth.barthwal@nbaztec.co.in> | 2013-03-04 12:50:12 +0100 |
commit | 7d10006a0001ff0e7d82ec994b1e9cbb63683ffc (patch) | |
tree | 97442588bb5b75becf31663129b5ec11489a1b19 /system | |
parent | ff1a507a07792eca9bdc5d6503d5acfce4f2ba1f (diff) |
Fixed #2289
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Email.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Email.php b/system/libraries/Email.php index daa38484b..728b637a3 100644 --- a/system/libraries/Email.php +++ b/system/libraries/Email.php @@ -2017,7 +2017,7 @@ class CI_Email { $reply = $this->_get_smtp_data(); - if (strpos($reply, '503') !== 0) // Already authenticated + if (strpos($reply, '503') === 0) // Already authenticated { return TRUE; } |