diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-05-02 15:39:10 -0700 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-05-02 15:39:10 -0700 |
commit | 444a209a2a45c27675a1c754e4b6b2f039be1276 (patch) | |
tree | 1debf7d9d71672c156f04fb0838d7cb753c0c9d6 /lib | |
parent | a204a46d5003435967d2b47c9a4a64604f1d6426 (diff) | |
parent | fbf9233648f59b06782330a9fef7aaa9f27480cb (diff) | |
download | nextcloud-server-444a209a2a45c27675a1c754e4b6b2f039be1276.tar.gz nextcloud-server-444a209a2a45c27675a1c754e4b6b2f039be1276.zip |
Merge pull request #3183 from miicha/patch-1
fixing mimetype for "new" ms office formats
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mimetypes.list.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/mimetypes.list.php b/lib/mimetypes.list.php index 9135a7e3af2..2aac3bbfd27 100644 --- a/lib/mimetypes.list.php +++ b/lib/mimetypes.list.php @@ -86,11 +86,11 @@ return array( 'vcf' => 'text/vcard', 'vcard' => 'text/vcard', 'doc'=>'application/msword', - 'docx'=>'application/msword', + 'docx'=>'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'xls'=>'application/msexcel', - 'xlsx'=>'application/msexcel', + 'xlsx'=>'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'ppt'=>'application/mspowerpoint', - 'pptx'=>'application/mspowerpoint', + 'pptx'=>'application/vnd.openxmlformats-officedocument.presentationml.presentation', 'sgf' => 'application/sgf', 'cdr' => 'application/coreldraw', 'impress' => 'text/impress', |