diff options
author | Andrey Andreev <narf@devilix.net> | 2014-02-26 17:41:59 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-02-26 17:41:59 +0100 |
commit | 382b51383c84fbb7f861fcd87b0b71b35c9f2869 (patch) | |
tree | 9aa8bf35189e3a7f4a8a6923bafba758d15aa90b /system/libraries/Ftp.php | |
parent | ea41c8aa1951216b6a9ccc99832d69d2b41c5ead (diff) |
Don't use error suppression on is_dir(), file_exists()
Diffstat (limited to 'system/libraries/Ftp.php')
-rw-r--r-- | system/libraries/Ftp.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/system/libraries/Ftp.php b/system/libraries/Ftp.php index fc02f8300..8401a380e 100644 --- a/system/libraries/Ftp.php +++ b/system/libraries/Ftp.php @@ -147,6 +147,7 @@ class CI_FTP { { $this->_error('ftp_unable_to_connect'); } + return FALSE; } @@ -156,6 +157,7 @@ class CI_FTP { { $this->_error('ftp_unable_to_login'); } + return FALSE; } @@ -572,7 +574,7 @@ class CI_FTP { // Recursively read the local directory while (FALSE !== ($file = readdir($fp))) { - if (@is_dir($locpath.$file) && $file[0] !== '.') + if (is_dir($locpath.$file) && $file[0] !== '.') { $this->mirror($locpath.$file.'/', $rempath.$file.'/'); } |