halgatewood / file-directory-list

Free Super Clean PHP File Directory Listing Script
https://halgatewood.com/free/file-directory-list/
360 stars 151 forks source link

Problem with folders names containing dots #33

Open llelundberg opened 3 years ago

llelundberg commented 3 years ago

Nice script!

I found a small problem with folder names containting dots, the script treats them as files.

I changed line 177 from: if( !$file_ext AND is_dir($file)) $file_ext = "dir"; to if( is_dir($file)) $file_ext = "dir";

The $file_ext check is redundant anyway.