summaryrefslogtreecommitdiffstats
path: root/system/helpers/file_helper.php
diff options
context:
space:
mode:
authorDerek Jones <derek.jones@ellislab.com>2008-02-20 19:39:18 +0100
committerDerek Jones <derek.jones@ellislab.com>2008-02-20 19:39:18 +0100
commitfd971781c4f4d1b436cc7b9efd2e409b7b400b88 (patch)
tree92c96c05b7b0e2f747c14e77eddff1d5d1836ea2 /system/helpers/file_helper.php
parent06935e610645384faf3d3897585ed4be668d4795 (diff)
modified get_filenames() to return FALSE if the directory cannot be read
Diffstat (limited to 'system/helpers/file_helper.php')
-rw-r--r--system/helpers/file_helper.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/system/helpers/file_helper.php b/system/helpers/file_helper.php
index ef07de76c..0005c2a24 100644
--- a/system/helpers/file_helper.php
+++ b/system/helpers/file_helper.php
@@ -184,6 +184,10 @@ if (! function_exists('get_filenames'))
}
return $_filedata;
}
+ else
+ {
+ return $FALSE;
+ }
}
}