diff options
author | Badlop <badlop@process-one.net> | 2011-09-20 16:50:22 +0200 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2011-09-20 16:50:22 +0200 |
commit | 9f4ae0710073c640cbaeaa89b1a02eea3c81e73a (patch) | |
tree | e203077a07d813853849a8ab926dc3971090750e /src | |
parent | Add support for @online@ to add_user_to_group (diff) |
added svg mimetype to default content types (thanks to Markus Kohlhase)
Diffstat (limited to 'src')
-rw-r--r-- | src/web/mod_http_fileserver.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/web/mod_http_fileserver.erl b/src/web/mod_http_fileserver.erl index 95c080bc3..bd730b293 100644 --- a/src/web/mod_http_fileserver.erl +++ b/src/web/mod_http_fileserver.erl @@ -91,9 +91,10 @@ {".html", "text/html"}, {".jar", "application/java-archive"}, {".jpeg", "image/jpeg"}, - {".jpg", "image/jpeg"}, + {".jpg", "image/jpeg"}, {".js", "text/javascript"}, {".png", "image/png"}, + {".svg", "image/svg+xml"}, {".txt", "text/plain"}, {".xml", "application/xml"}, {".xpi", "application/x-xpinstall"}, |