aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2011-09-20 16:50:22 +0200
committerBadlop <badlop@process-one.net>2011-09-20 16:50:32 +0200
commit1c62edc53c97f36d596e0cf303ada83a885a635d (patch)
tree59033e084ca457377d70b1ff7a9012c0e791e957 /src
parentAdd 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.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/web/mod_http_fileserver.erl b/src/web/mod_http_fileserver.erl
index f6399ed60..811f037a9 100644
--- a/src/web/mod_http_fileserver.erl
+++ b/src/web/mod_http_fileserver.erl
@@ -81,9 +81,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"},