fix bug: *.png folder display as png file
folder named as 'xxx.png' should display folder ico
This commit is contained in:
parent
5018d0a4dd
commit
2142a95ab6
@ -135,8 +135,13 @@ function display_block( $file )
|
||||
{
|
||||
global $ignore_file_list, $ignore_ext_list, $force_download;
|
||||
|
||||
$file_ext = getFileExt($file);
|
||||
if( !$file_ext AND is_dir($file)) $file_ext = "dir";
|
||||
//$file_ext = getFileExt($file);
|
||||
//if( !$file_ext AND is_dir($file)) $file_ext = "dir";
|
||||
if( is_dir($file))
|
||||
$file_ext = "dir";
|
||||
else
|
||||
$file_ext = getFileExt($file);
|
||||
|
||||
if(in_array($file, $ignore_file_list)) return;
|
||||
if(in_array($file_ext, $ignore_ext_list)) return;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user