X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FUtil%2FMimetype.php;h=53deff8f204b2c3cc5bfcba3694004f16da8e941;hb=3bca4fe2a64671d09e08346456cdfa6c12f996e9;hp=bd87d30898a4abfac7940e412dfecb5d6b1026cc;hpb=2c56d2f3360c08e312e5c167261af8e5d4b87af4;p=friendica.git diff --git a/src/Util/Mimetype.php b/src/Util/Mimetype.php index bd87d30898..53deff8f20 100644 --- a/src/Util/Mimetype.php +++ b/src/Util/Mimetype.php @@ -1,6 +1,6 @@ 'text/plain', 'htm' => 'text/html', 'html' => 'text/html', @@ -43,7 +44,7 @@ class Mimetype 'xml' => 'application/xml', 'swf' => 'application/x-shockwave-flash', 'flv' => 'video/x-flv', - + // images 'png' => 'image/png', 'jpe' => 'image/jpeg', @@ -56,14 +57,14 @@ class Mimetype 'tif' => 'image/tiff', 'svg' => 'image/svg+xml', 'svgz' => 'image/svg+xml', - + // archives 'zip' => 'application/zip', 'rar' => 'application/x-rar-compressed', 'exe' => 'application/x-msdownload', 'msi' => 'application/x-msdownload', 'cab' => 'application/vnd.ms-cab-compressed', - + // audio/video 'mp3' => 'audio/mpeg', 'wav' => 'audio/wav', @@ -74,14 +75,14 @@ class Mimetype 'avi' => 'video/x-msvideo', 'wmv' => 'video/x-ms-wmv', 'wma' => 'audio/x-ms-wma', - + // adobe 'pdf' => 'application/pdf', 'psd' => 'image/vnd.adobe.photoshop', 'ai' => 'application/postscript', 'eps' => 'application/postscript', 'ps' => 'application/postscript', - + // ms office 'doc' => 'application/msword', 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', @@ -90,12 +91,12 @@ class Mimetype 'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'ppt' => 'application/vnd.ms-powerpoint', 'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation', - - + + // open office 'odt' => 'application/vnd.oasis.opendocument.text', 'ods' => 'application/vnd.oasis.opendocument.spreadsheet',*/ - + // Assembled from the original Friendica list and // lists from http://www.freeformatter.com/mime-types-list.html // and http://www.webmaster-toolkit.com/mime-types.shtml @@ -1087,8 +1088,8 @@ class Mimetype 'zoo' => 'application/octet-stream', '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)) {