From 117c8013d25ae8192531f0febcd993ef43b7b9d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Jacquin?= Date: Tue, 18 Apr 2017 23:02:11 +0200 Subject: [PATCH] Option to hide exntensions into list added --- index.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.php b/index.php index fb5544c..9b6bb70 100644 --- a/index.php +++ b/index.php @@ -17,6 +17,8 @@ $allow_direct_link = true; // Set to false to only allow downloads and not direc $disallowed_extensions = ['php']; // must be an array. +$hidden_extensions = ['php']; // must be an array. + $PASSWORD = ''; // Set the password, to access the file manager... (optional) if($PASSWORD) { @@ -59,7 +61,7 @@ if($_GET['do'] == 'list') { $directory = $file; $result = []; $files = array_diff(scandir($directory), ['.','..']); - foreach($files as $entry) if($entry !== basename(__FILE__)) { + foreach($files as $entry) if($entry !== basename(__FILE__) && !in_array(strtolower(pathinfo($entry, PATHINFO_EXTENSION)), $hidden_extensions)) { $i = $directory . '/' . $entry; $stat = stat($i); $result[] = [