From: Steven Barth Date: Sat, 21 Jun 2008 16:24:52 +0000 (+0000) Subject: * Fixed last commit X-Git-Tag: 0.8.0~790 X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=b28bf0f3943d559aacf08058ec7f0f9c9454a92c * Fixed last commit --- diff --git a/libs/httpd/luasrc/httpd/module.lua b/libs/httpd/luasrc/httpd/module.lua index ba745bde3..f1fb68763 100644 --- a/libs/httpd/luasrc/httpd/module.lua +++ b/libs/httpd/luasrc/httpd/module.lua @@ -119,7 +119,7 @@ end -- Handler Response Response = luci.util.class() -function Response.__init__(self, request, status, headers) +function Response.__init__(self, status, headers) self.status = tonumber(status) or 200 self.headers = (type(headers) == "table") and headers or {} end