Merge pull request #9939 from jurassic-c/mimetype-dotname-fix
File extension to Mimetype matching fix for filenames with extra periods in them
This commit is contained in:
commit
251465f67a
|
@ -1088,7 +1088,7 @@ class Mimetype
|
|||
'zsh' => 'text/x-script.zsh'
|
||||
];
|
||||
|
||||
$dot = strpos($filename, '.');
|
||||
$dot = strrpos($filename, '.');
|
||||
if ($dot !== false) {
|
||||
$ext = strtolower(substr($filename, $dot + 1));
|
||||
if (array_key_exists($ext, $mime_types)) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user