diff options
author | ken restivo <ken@restivo.org> | 2015-10-27 19:48:14 -0700 |
---|---|---|
committer | ken restivo <ken@restivo.org> | 2015-10-27 19:48:14 -0700 |
commit | b3528c314a3a9b8ea387fa178cad12d15b317384 (patch) | |
tree | b964f0553efcc1f293a506a7ee3ab2eb0477549a /include | |
parent | 65587be737e13e611f6e5ba67ee0301c312250b9 (diff) | |
download | volse-hubzilla-b3528c314a3a9b8ea387fa178cad12d15b317384.tar.gz volse-hubzilla-b3528c314a3a9b8ea387fa178cad12d15b317384.tar.bz2 volse-hubzilla-b3528c314a3a9b8ea387fa178cad12d15b317384.zip |
Support files with names like foo.0.1.3.ogg
Diffstat (limited to 'include')
-rw-r--r-- | include/attach.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/attach.php b/include/attach.php index a959a5bcb..1bba88c63 100644 --- a/include/attach.php +++ b/include/attach.php @@ -108,9 +108,9 @@ function z_mime_content_type($filename) { 'oth' => 'application/vnd.oasis.opendocument.text-web' ); - $dot = strpos($filename, '.'); - if ($dot !== false) { - $ext = strtolower(substr($filename, $dot + 1)); + $last_dot = strrpos($filename, '.'); + if ($last_dot !== false) { + $ext = strtolower(substr($filename, $last_dot + 1)); if (array_key_exists($ext, $mime_types)) { return $mime_types[$ext]; } |