diff options
Diffstat (limited to 'phpBB/includes/functions_admin.php')
-rw-r--r-- | phpBB/includes/functions_admin.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index 48de517083..cc39ecbdda 100644 --- a/phpBB/includes/functions_admin.php +++ b/phpBB/includes/functions_admin.php @@ -300,6 +300,11 @@ function filelist($rootdir, $dir = '', $type = 'gif|jpg|jpeg|png') // Add closing / if present $dir = ($dir && substr($dir, -1) != '/') ? $dir . '/' : $dir; + if (!is_dir($rootdir . $dir)) + { + return false; + } + $dh = opendir($rootdir . $dir); while (($fname = readdir($dh)) !== false) { |