summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Karlitschek <frank@owncloud.org>2013-12-18 23:41:36 -0800
committerFrank Karlitschek <frank@owncloud.org>2013-12-18 23:41:36 -0800
commit748d90592a733ad7b9c14abe62840bcd8f4897c8 (patch)
tree25fde1f2d6168254bfa3a53ca9c755ec5dd87f05
parent37cdbc3be01d28ae0c7f399442e1390e7c4da4e7 (diff)
parentb109d411d8e88a84a1b2620b42e977c52c7492ff (diff)
downloadnextcloud-server-748d90592a733ad7b9c14abe62840bcd8f4897c8.tar.gz
nextcloud-server-748d90592a733ad7b9c14abe62840bcd8f4897c8.zip
Merge pull request #6502 from owncloud/core-extramimetypes
Added missing mime types
-rw-r--r--lib/private/mimetypes.list.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php
index 8ab8ac81bd8..3034c2777f7 100644
--- a/lib/private/mimetypes.list.php
+++ b/lib/private/mimetypes.list.php
@@ -82,7 +82,7 @@ return array(
'mov'=>'video/quicktime',
'webm'=>'video/webm',
'wmv'=>'video/x-ms-asf',
- 'py'=>'text/x-script.phyton',
+ 'py'=>'text/x-script.python',
'vcf' => 'text/vcard',
'vcard' => 'text/vcard',
'doc'=>'application/msword',
@@ -103,5 +103,9 @@ return array(
'markdown' => 'text/markdown',
'mdown' => 'text/markdown',
'mdwn' => 'text/markdown',
- 'reveal' => 'text/reveal'
+ 'reveal' => 'text/reveal',
+ 'c' => 'text/x-c',
+ 'cc' => 'text/x-c',
+ 'cpp' => 'text/x-c++src',
+ 'c++' => 'text/x-c++src',
);