diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-17 20:48:32 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-17 20:48:32 +0100 |
commit | 0f434038a707e4d90f354377ebd4b0bd37c18545 (patch) | |
tree | 40fdc0e3861be47aebe63c28161c1338c4aa4dde /lib/private | |
parent | 84cd6e035e5e01c5a3182bd73677371d08810b20 (diff) | |
download | nextcloud-server-0f434038a707e4d90f354377ebd4b0bd37c18545.tar.gz nextcloud-server-0f434038a707e4d90f354377ebd4b0bd37c18545.zip |
add cbr/cbz file type icon, fix #6953
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/mimetypes.list.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index 40fb1d2d97d..174877d623b 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -29,10 +29,17 @@ return array( 'avi'=>'video/x-msvideo', 'bash' => 'text/x-shellscript', 'blend'=>'application/x-blender', + 'cb7' => 'application/x-cbr', + 'cba' => 'application/x-cbr', + 'cbr' => 'application/x-cbr', + 'cbt' => 'application/x-cbr', + 'cbtc' => 'application/x-cbr', + 'cbz' => 'application/x-cbr', 'cc' => 'text/x-c', 'cdr' => 'application/coreldraw', 'cpp' => 'text/x-c++src', 'css'=>'text/css', + 'cvbdl' => 'application/x-cbr', 'c' => 'text/x-c', 'c++' => 'text/x-c++src', 'doc'=>'application/msword', |