commit | 45549a2919892e31782fc4381d7db8c6f3293bcb | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@devilix.net> | Mon Jan 06 13:55:38 2014 +0200 |
committer | Andrey Andreev <narf@devilix.net> | Mon Jan 06 13:55:38 2014 +0200 |
tree | 8e3bc6b9c5a84653ed629ac05d62df35b561dd34 | |
parent | 1720a6aee782b1193454e2ec172f3e89461f83f4 [diff] [blame] |
Remove a redudant value check
diff --git a/system/libraries/Ftp.php b/system/libraries/Ftp.php index 4be2d0a..73a6844 100644 --- a/system/libraries/Ftp.php +++ b/system/libraries/Ftp.php
@@ -219,7 +219,7 @@ */ public function changedir($path, $suppress_debug = FALSE) { - if ($path === '' OR ! $this->_is_conn()) + if ( ! $this->_is_conn()) { return FALSE; }