"icons matching only the first part of the mime type were not displayed"

This commit is contained in:
Ralf Becker 2008-10-03 08:14:35 +00:00
parent 9e3281799f
commit dec9991bbf

View File

@ -844,7 +844,7 @@ class egw_vfs extends vfs_stream_wrapper
$mime_type = 'unknown';
}
$mime_full = strtolower(str_replace ('/','_',$mime_type));
list($mime_part) = explode('_',$mime_type);
list($mime_part) = explode('_',$mime_full);
if (!($img=$GLOBALS['egw']->common->image('filemanager',$icon='mime'.$size.'_'.$mime_full)) &&
!($img=$GLOBALS['egw']->common->image('filemanager',$icon='mime'.$size.'_'.$mime_part)))