diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-11-17 09:14:16 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-11-17 09:14:16 +0100 |
commit | becd5f1446dd837e006f31d3befb611c20445d8d (patch) | |
tree | be7211a665c3b645e41f915baf23bbc211c9a0ee /include/attach.php | |
parent | 3f2b7d756c2bcffef675770d28d5b65b380fc8f5 (diff) | |
parent | ab363e31322d699ee53f052d5198c3a7680f8cc8 (diff) | |
download | volse-hubzilla-becd5f1446dd837e006f31d3befb611c20445d8d.tar.gz volse-hubzilla-becd5f1446dd837e006f31d3befb611c20445d8d.tar.bz2 volse-hubzilla-becd5f1446dd837e006f31d3befb611c20445d8d.zip |
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'include/attach.php')
-rw-r--r-- | include/attach.php | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/include/attach.php b/include/attach.php index 96b9c0b44..0f07fe035 100644 --- a/include/attach.php +++ b/include/attach.php @@ -31,7 +31,6 @@ function z_mime_content_type($filename) { 'txt' => 'text/plain', 'htm' => 'text/html', 'html' => 'text/html', - 'php' => 'text/html', 'css' => 'text/css', 'md' => 'text/markdown', 'bb' => 'text/bbcode', @@ -41,8 +40,17 @@ function z_mime_content_type($filename) { 'swf' => 'application/x-shockwave-flash', 'flv' => 'video/x-flv', 'epub' => 'application/epub+zip', + 'c' => 'text/plain', + 'h' => 'text/plain', + 'sh' => 'text/plain', + 'py' => 'text/plain', + 'php' => 'text/plain', + 'rb' => 'text/plain', + 'pdl' => 'text/plain', + // images + 'png' => 'image/png', 'jpe' => 'image/jpeg', 'jpeg' => 'image/jpeg', @@ -73,9 +81,7 @@ function z_mime_content_type($filename) { 'flac' => 'audio/flac', 'opus' => 'audio/ogg', 'webm' => 'video/webm', -// 'webm' => 'audio/webm', 'mp4' => 'video/mp4', -// 'mp4' => 'audio/mp4', 'mkv' => 'video/x-matroska', // adobe |