Always close POST-connections (circumvents some strange browser behaviour in Firefox...
[project/luci.git] / libs / httpd / luasrc / httpd / server.lua
index 6cbffa1..fd4db14 100644 (file)
@@ -168,7 +168,9 @@ function Server.process( self, client )
                                self:error( thread, 411, luci.http.protocol.statusmsg[411] )
                                break;
                        end
-                       
+
+                       -- FIXME: Close for POST requests
+                       close = true
                else
                        self:error( thread, 405, luci.http.protocol.statusmsg[405] )
                        break;