From: Jo-Philipp Wich Date: Thu, 9 Jul 2009 17:01:50 +0000 (+0000) Subject: applications/luci-splash: do explicit check for state new X-Git-Tag: 0.10.0~1395 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=2dcd2eb9b2e3f2e437850f0645ffe9baf72efbdc applications/luci-splash: do explicit check for state new --- diff --git a/applications/luci-splash/luasrc/controller/splash/splash.lua b/applications/luci-splash/luasrc/controller/splash/splash.lua index 3519a03af..2906298f1 100644 --- a/applications/luci-splash/luasrc/controller/splash/splash.lua +++ b/applications/luci-splash/luasrc/controller/splash/splash.lua @@ -13,10 +13,10 @@ end function action_dispatch() local mac = luci.sys.net.ip4mac(luci.http.getenv("REMOTE_ADDR")) or "" local status = luci.util.execl("luci-splash status " .. mac)[1] - if #mac > 0 and ( status == "whitelist" or status == "lease" ) then - luci.http.redirect(luci.dispatcher.build_url()) - else + if #mac > 0 and status == "new" then luci.http.redirect(luci.dispatcher.build_url("splash", "splash")) + else + luci.http.redirect(luci.dispatcher.build_url()) end end