diff options
Diffstat (limited to 'applications/luci-splash/luasrc/controller/splash/splash.lua')
-rw-r--r-- | applications/luci-splash/luasrc/controller/splash/splash.lua | 6 |
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 b046ff409..5731efc8c 100644 --- a/applications/luci-splash/luasrc/controller/splash/splash.lua +++ b/applications/luci-splash/luasrc/controller/splash/splash.lua @@ -4,8 +4,8 @@ function index() entry({"admin", "services", "splash"}, cbi("splash/splash"), "Client-Splash") node("splash").target = call("action_dispatch") - node("splash", "splash", "activate").target = call("action_activate") - node("splash", "splash", "splash").target = template("splash_splash/splash") + node("splash", "activate").target = call("action_activate") + node("splash", "splash").target = template("splash_splash/splash") end function action_dispatch() @@ -14,7 +14,7 @@ function action_dispatch() if #mac > 0 and ( status == "whitelisted" or status == "lease" ) then luci.http.redirect(luci.dispatcher.build_url()) else - luci.http.redirect(luci.dispatcher.build_url("splash", "splash", "splash")) + luci.http.redirect(luci.dispatcher.build_url("splash", "splash")) end end |