From 7d10006a0001ff0e7d82ec994b1e9cbb63683ffc Mon Sep 17 00:00:00 2001 From: nisheeth-barthwal Date: Mon, 4 Mar 2013 17:20:12 +0530 Subject: Fixed #2289 --- system/libraries/Email.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/libraries') 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; } -- cgit v1.2.3-24-g4f1b