libs/sgi-cgi: Workaround for broken CGI implementation of Busybox HTTPd
[project/luci.git] / libs / sgi-cgi / luasrc / sgi / cgi.lua
index 427fa87..0d5ba6f 100644 (file)
@@ -37,6 +37,7 @@ function run()
        )
        
        local x = coroutine.create(luci.dispatcher.httpdispatch)
+       local hcache = ""
        
        while coroutine.status(x) ~= "dead" do
                local res, id, data1, data2 = coroutine.resume(x, r)
@@ -51,8 +52,9 @@ function run()
                if id == 1 then
                        io.write("Status: " .. tostring(data1) .. " " .. data2 .. "\r\n")
                elseif id == 2 then
-                       io.write(data1 .. ": " .. data2 .. "\r\n")
+                       hcache = hcache .. data1 .. ": " .. data2 .. "\r\n"
                elseif id == 3 then
+                       io.write(hcache)
                        io.write("\r\n")
                elseif id == 4 then
                        io.write(data1)