diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-07-09 16:55:41 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-07-09 16:55:41 +0000 |
commit | 7d7fcecb7498f214d5fd5ee4c3f1d6b287932307 (patch) | |
tree | 4a89b071ed73a6e70fc69eea08596be61de12dfb /applications/luci-splash/luasrc/controller | |
parent | 6bfe0624b69defeba37cadffc6afa5ccb9577add (diff) |
applications/luci-splash: fix mac status query
Diffstat (limited to 'applications/luci-splash/luasrc/controller')
-rw-r--r-- | applications/luci-splash/luasrc/controller/splash/splash.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-splash/luasrc/controller/splash/splash.lua b/applications/luci-splash/luasrc/controller/splash/splash.lua index 13f9f4121..3519a03af 100644 --- a/applications/luci-splash/luasrc/controller/splash/splash.lua +++ b/applications/luci-splash/luasrc/controller/splash/splash.lua @@ -12,8 +12,8 @@ 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 == "whitelisted" or status == "lease" ) then + 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 luci.http.redirect(luci.dispatcher.build_url("splash", "splash")) |