From 668f8ed7a09f3118038e604a234651250c0807e1 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 18 Sep 2014 09:34:05 +0000 Subject: [PATCH] luci-0.11: backport r10529 --- libs/web/luasrc/http.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/web/luasrc/http.lua b/libs/web/luasrc/http.lua index c53307a5a..e8430b727 100644 --- a/libs/web/luasrc/http.lua +++ b/libs/web/luasrc/http.lua @@ -42,8 +42,8 @@ function Request.__init__(self, env, sourcein, sinkerr) self.error = sinkerr - -- File handler - self.filehandler = function() end + -- File handler nil by default to let .content() work + self.filehandler = nil -- HTTP-Message table self.message = { -- 2.11.0