If all file extensions are supported we have no list of comparisons
This commit is contained in:
parent
d07640caba
commit
dbe5d72e4c
|
@ -1855,6 +1855,9 @@ function common_supported_ext_to_mime($fileext)
|
|||
}
|
||||
|
||||
$supported = common_config('attachments', 'supported');
|
||||
if ($supported === true) {
|
||||
throw new ServerException('Supported extension but unknown mimetype relation.');
|
||||
}
|
||||
foreach($supported as $type => $ext) {
|
||||
if ($ext === $fileext) {
|
||||
return $type;
|
||||
|
@ -2461,4 +2464,4 @@ function html_sprintf()
|
|||
function _ve($var)
|
||||
{
|
||||
return var_export($var, true);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user