summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-splash
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-07-09 17:01:50 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-07-09 17:01:50 +0000
commit2dcd2eb9b2e3f2e437850f0645ffe9baf72efbdc (patch)
treed1f1328904e7182584ce7ef96ae52f3a29889a53 /applications/luci-splash
parent7d7fcecb7498f214d5fd5ee4c3f1d6b287932307 (diff)
applications/luci-splash: do explicit check for state new
Diffstat (limited to 'applications/luci-splash')
-rw-r--r--applications/luci-splash/luasrc/controller/splash/splash.lua6
1 files changed, 3 insertions, 3 deletions
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