summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorMehdi Bounya <5004111+mehdibo@users.noreply.github.com>2018-03-04 01:00:20 +0100
committerGitHub <noreply@github.com>2018-03-04 01:00:20 +0100
commit90ef2e3bd27cfb5125e2d27ec71c2ed990c12cc5 (patch)
treee350aba2498b6f3c030820cd74d51e111cbee2c4 /system
parent8ef6526651c4900308255c2cda0f7278223ea387 (diff)
Fixed bug in ZIP library
the `read_dir` method ignores files that starts with a dot (like .htaccess) I looked through the documentation and it didn't mention that the method ignores hidden files so it must be a bug.
Diffstat (limited to 'system')
-rw-r--r--system/libraries/Zip.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Zip.php b/system/libraries/Zip.php
index bc557bfe4..6ed6d5242 100644
--- a/system/libraries/Zip.php
+++ b/system/libraries/Zip.php
@@ -366,7 +366,7 @@ class CI_Zip {
while (FALSE !== ($file = readdir($fp)))
{
- if ($file[0] === '.')
+ if ($file === '.' OR $file === '..')
{
continue;
}