From 0ba0030745c3c23a3343484341575e127fb483f3 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Tue, 21 Oct 2008 20:25:29 +0000 Subject: [PATCH] Some browsers send crippled content-type headers when it comes to XHR, catch them as well --- libs/http/luasrc/http/protocol.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/http/luasrc/http/protocol.lua b/libs/http/luasrc/http/protocol.lua index b9a50effe..e0c15015b 100644 --- a/libs/http/luasrc/http/protocol.lua +++ b/libs/http/luasrc/http/protocol.lua @@ -563,7 +563,7 @@ function parse_message_header( src ) -- Populate common environment variables msg.env = { CONTENT_LENGTH = msg.headers['Content-Length']; - CONTENT_TYPE = msg.headers['Content-Type']; + CONTENT_TYPE = msg.headers['Content-Type'] or msg.headers['Content-type']; REQUEST_METHOD = msg.request_method:upper(); REQUEST_URI = msg.request_uri; SCRIPT_NAME = msg.request_uri:gsub("?.+$",""); -- 2.11.0