diff options
author | Waqas Hussain <waqas20@gmail.com> | 2009-12-10 16:52:08 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2009-12-10 16:52:08 +0500 |
commit | cc9e756839f716de96d1bf95e4cd1eded8046a3d (patch) | |
tree | 8802b3c4c92fb605c1bacb591a49423370aa149d /plugins | |
parent | 0c6835cf3a30516049962897a7b1030012c82da1 (diff) | |
download | prosody-cc9e756839f716de96d1bf95e4cd1eded8046a3d.tar.gz prosody-cc9e756839f716de96d1bf95e4cd1eded8046a3d.zip |
mod_httpserver: Text files are text/plain, and not plain/text.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_httpserver.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_httpserver.lua b/plugins/mod_httpserver.lua index c5775ba3..6b205166 100644 --- a/plugins/mod_httpserver.lua +++ b/plugins/mod_httpserver.lua @@ -23,7 +23,7 @@ local mime_map = { htm = "text/html"; xml = "text/xml"; xsl = "text/xml"; - txt = "plain/text; charset=utf-8"; + txt = "text/plain; charset=utf-8"; js = "text/javascript"; css = "text/css"; }; |