diff options
author | Steven Barth <steven@midlink.org> | 2008-05-27 20:39:48 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-05-27 20:39:48 +0000 |
commit | b1e131a3db1b6ec2ceecb5df4a224f3de2735e6d (patch) | |
tree | 593175651871c9fcfaa4ee7c9fceeb8990b8147c /applications/luci-splash | |
parent | 3f09d369d679d3e4413849cf67f757c647a66965 (diff) |
* Optimized dispatching model
Diffstat (limited to 'applications/luci-splash')
-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 544f1e89e..e7448d7fb 100644 --- a/applications/luci-splash/luasrc/controller/splash/splash.lua +++ b/applications/luci-splash/luasrc/controller/splash/splash.lua @@ -5,9 +5,9 @@ function index() page.target = cbi("splash/splash") page.title = "Client-Splash" - node("splash", "splash", "activate").target = action_activate - node("splash", "splash", "allowed").target = action_allowed - node("splash", "splash", "unknown").target = action_unknown + node("splash", "splash", "activate").target = call("action_activate") + node("splash", "splash", "allowed").target = call("action_allowed") + node("splash", "splash", "unknown").target = call("action_unknown") node("splash", "splash", "splash").target = template("splash_splash/splash") end |