diff options
author | vlakoff <vlakoff@gmail.com> | 2013-02-19 01:45:23 +0100 |
---|---|---|
committer | vlakoff <vlakoff@gmail.com> | 2013-02-19 01:45:23 +0100 |
commit | f399425bacfa461a77be2e841c3c1f48f9241c4a (patch) | |
tree | d66480130ff53820a475a9aed8827e6cdee63238 /system/libraries/Email.php | |
parent | 6244086d6e251fc4b3c71d23da625ffb59b85d77 (diff) |
Fix a code comment in Upload->_file_mime_type()
Availability of dangerous functions is now tested using function_usable().
Diffstat (limited to 'system/libraries/Email.php')
-rw-r--r-- | system/libraries/Email.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/libraries/Email.php b/system/libraries/Email.php index 1bf1da15e..074ce60fc 100644 --- a/system/libraries/Email.php +++ b/system/libraries/Email.php @@ -94,7 +94,7 @@ class CI_Email { * @var int */ public $smtp_timeout = 5; - + /** * SMTP persistent connection * @@ -408,7 +408,7 @@ class CI_Email { } // -------------------------------------------------------------------- - + /** * Destructor - Releases Resources * @@ -2018,7 +2018,7 @@ class CI_Email { { return TRUE; } - + if (strpos($reply, '334') !== 0) { $this->_set_error_message('lang:email_failed_smtp_login', $reply); |