diff options
author | Jo-Philipp Wich <jo@mein.io> | 2018-04-06 11:52:36 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2018-04-06 12:07:49 +0200 |
commit | 1443ff121d96a541e3cf83ba3efc50ccfb3fdb80 (patch) | |
tree | b79c9050336b53f1d935fc865252941ea9058de8 /applications/luci-app-firewall/luasrc | |
parent | 4a90accda94acb0b7a1ca5df5933edf465d0cf21 (diff) |
luci-app-firewall: dispatch SimpleForm model using the form() action
This fixes issues dicovered by check-controllers.sh
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-firewall/luasrc')
-rw-r--r-- | applications/luci-app-firewall/luasrc/controller/firewall.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-firewall/luasrc/controller/firewall.lua b/applications/luci-app-firewall/luasrc/controller/firewall.lua index 5a6ab0ad3..4fe7770ef 100644 --- a/applications/luci-app-firewall/luasrc/controller/firewall.lua +++ b/applications/luci-app-firewall/luasrc/controller/firewall.lua @@ -18,6 +18,6 @@ function index() _("Traffic Rules"), 30).leaf = true entry({"admin", "network", "firewall", "custom"}, - cbi("firewall/custom"), + form("firewall/custom"), _("Custom Rules"), 40).leaf = true end |