diff --git a/lib/util.php b/lib/util.php index 294c032216..53eddc1fac 100644 --- a/lib/util.php +++ b/lib/util.php @@ -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); -} \ No newline at end of file +}