diff options
author | Andrey Andreev <narf@devilix.net> | 2022-02-21 21:37:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-21 21:37:45 +0100 |
commit | bb7192e43b251cb9620b35859f6283e80897c331 (patch) | |
tree | b9652808b2008dec5aa7389521a81f3da1dc7822 /system/libraries | |
parent | 852c14bbca1277583c23a1977ddfc348af4d395a (diff) | |
parent | 1af4c2b7485eb8bc233a84825beb9a75183bdd24 (diff) |
[ci skip] Merge pull request #6102 from maxiwheat/develop
Fix method _is_conn() in Ftp library
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Ftp.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Ftp.php b/system/libraries/Ftp.php index 92644153a..a406f819e 100644 --- a/system/libraries/Ftp.php +++ b/system/libraries/Ftp.php @@ -202,7 +202,7 @@ class CI_FTP { */ protected function _is_conn() { - if ($this->conn_id !== FALSE) + if ($this->conn_id === FALSE) { if ($this->debug === TRUE) { |