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

folder named aaa.bbb will show as file #4

Closed yurenchen000 closed 7 years ago

yurenchen000 commented 7 years ago

https://github.com/halgatewood/file-directory-list/blob/b48be52670f75250f1383cfb0374bffb10f99794/index.php#L139

I fixed this problem by change to:

if( is_dir($file))
    $file_ext = "dir";
else
    $file_ext = getFileExt($file);
halgatewood commented 7 years ago

Thank you! I just merged it with master.