This commit is contained in:
parent
7b1594f798
commit
d27786213e
1 changed files with 1 additions and 1 deletions
|
@ -313,7 +313,7 @@ class Pico {
|
|||
$array_items = array();
|
||||
if($handle = opendir($directory)){
|
||||
while(false !== ($file = readdir($handle))){
|
||||
if($file != "." && $file != ".."){
|
||||
if($file != "." && $file != ".." && substr($file,0,1) != "."){
|
||||
if(is_dir($directory. "/" . $file)){
|
||||
$array_items = array_merge($array_items, $this->get_files($directory. "/" . $file, $ext));
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue