From 28b426e304ca53223c1a61b3b76dbae745cbcc46 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Sat, 26 May 2018 01:19:27 +0900 Subject: [PATCH] Update storage.php --- system/storage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/storage.php b/system/storage.php index 6781979..e666244 100644 --- a/system/storage.php +++ b/system/storage.php @@ -159,7 +159,7 @@ function retrieve_storage_files($type, $recursive=false, $excludes=array(".", ". if(is_dir($storage_path)) { if($handle = opendir($storage_path)) { while(false !== ($file = readdir($handle))) { - if(!in_array($file, $exclude) { + if(!in_array($file, $exclude)) { $file_path = $storage_path . "/" . $file; if(is_file($file_path)) { $files[] = $file_path;