summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2022-02-21 21:37:45 +0100
committerGitHub <noreply@github.com>2022-02-21 21:37:45 +0100
commitbb7192e43b251cb9620b35859f6283e80897c331 (patch)
treeb9652808b2008dec5aa7389521a81f3da1dc7822
parent852c14bbca1277583c23a1977ddfc348af4d395a (diff)
parent1af4c2b7485eb8bc233a84825beb9a75183bdd24 (diff)
[ci skip] Merge pull request #6102 from maxiwheat/develop
Fix method _is_conn() in Ftp library
-rw-r--r--system/libraries/Ftp.php2
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)
{