Fix typo in HTTP headers. I need to refactor so header creation is single sourced. Oh well. This may fix issues in Firefox

This commit is contained in:
Marcos Kirsch
2015-04-01 22:56:47 -05:00
parent 871105dc64
commit f7969ae12d
4 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
local function sendHeader(connection)
connection:send("HTTP/1.0 200 OK\r\nContent-Type: text/html\r\Cache-Control: private, no-store\r\n\r\n")
connection:send("HTTP/1.0 200 OK\r\nContent-Type: text/html\rCache-Control: private, no-store\r\n\r\n")
end
local function sendAttr(connection, attr, val)