diff options
author | Steven Barth <steven@midlink.org> | 2008-08-10 13:01:16 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-08-10 13:01:16 +0000 |
commit | 90a6f45d33a3b5590e315f267713d526583ace19 (patch) | |
tree | fb858e39e8b2d13db07689e6f42a0e42192bca70 /libs/web/luasrc | |
parent | f9fa6d82da4f15473a49822d6d9dfda34144b85e (diff) |
* Fix last commit
Diffstat (limited to 'libs/web/luasrc')
-rw-r--r-- | libs/web/luasrc/dispatcher.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/web/luasrc/dispatcher.lua b/libs/web/luasrc/dispatcher.lua index b74c5bdc2..0666060ed 100644 --- a/libs/web/luasrc/dispatcher.lua +++ b/libs/web/luasrc/dispatcher.lua @@ -188,6 +188,9 @@ function dispatch(request) luci.http.status(403, "Forbidden") return end + else + luci.http.status(403, "Forbidden") + return end end |