From 0c2309719369c4565c8e8987c75d21eff3279c5c Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Wed, 9 Apr 2014 20:51:34 +0300 Subject: Issue/PR #2997 --- system/libraries/Ftp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/libraries/Ftp.php') diff --git a/system/libraries/Ftp.php b/system/libraries/Ftp.php index 8401a380e..5a856f158 100644 --- a/system/libraries/Ftp.php +++ b/system/libraries/Ftp.php @@ -477,7 +477,7 @@ class CI_FTP { { // If we can't delete the item it's probaly a directory, // so we'll recursively call delete_dir() - if ( ! @ftp_delete($this->conn_id, $list[$i])) + if ( ! in_array($list[$i], array('.', '..'), TRUE) && ! @ftp_delete($this->conn_id, $list[$i])) { $this->delete_dir($list[$i]); } -- cgit v1.2.3-24-g4f1b