diff options
author | Diogo Osório <diogo.g.osorio@gmail.com> | 2012-03-02 19:04:17 +0100 |
---|---|---|
committer | Diogo Osório <diogo.g.osorio@gmail.com> | 2012-03-02 19:04:17 +0100 |
commit | 593f798a0b463f45e00a207e4fe4b8cc82dedc35 (patch) | |
tree | d6ce46fa1342d1ac031d0046d00e6e24cbd8bd89 /system | |
parent | 7fcc7bdf7eb9c65920b1e14f242e31e3d71d1fd0 (diff) |
Made the code more readable, updated the changelog.
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 39a7059dd..8d839d0c9 100644 --- a/system/libraries/Email.php +++ b/system/libraries/Email.php @@ -1434,7 +1434,7 @@ class CI_Email { return FALSE; } - if ( !($this->_smtp_connect() && $this->_smtp_authenticate()) ) + if ( ! $this->_smtp_connect() OR ! $this->_smtp_authenticate()) { return FALSE; } |