diff options
author | Andrey Andreev <narf@devilix.net> | 2022-02-21 21:37:45 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2022-02-21 21:38:26 +0100 |
commit | c7bf8487eafdaeeb137401eb6f63022ec8798f31 (patch) | |
tree | adcce5d1869c35b1c082d953371545610178313a /system/libraries/Ftp.php | |
parent | 4692d7a966d7440765266c4c8dda0c18816e4304 (diff) |
[ci skip] Merge pull request #6102 from maxiwheat/develop
Fix method _is_conn() in Ftp library
Diffstat (limited to 'system/libraries/Ftp.php')
-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) { |