Merge pull request #1068 from nlegoff/phras-38

[3.8] Fix phras-38 add vnd mime type detection
This commit is contained in:
Nicolas Le Goff
2014-04-23 12:11:57 +02:00

View File

@@ -11,6 +11,12 @@ class MimeTypeGuesser implements MimeTypeGuesserInterface
'mpg' => 'video/mpeg',
'mov' => 'video/quicktime',
'dv' => 'video/x-dv',
'xls' => 'application/vnd.ms-excel',
'doc' => 'application/msword',
'ppt' => 'application/vnd.ms-powerpoint',
'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
);
/**