From: Florian Eckert Date: Tue, 30 Jan 2018 10:52:32 +0000 (+0100) Subject: luci-app-firewall: only show SNAT template if there are more then one zone X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=7bb2cd621370de9af6540cb0cfb0034905c5a737 luci-app-firewall: only show SNAT template if there are more then one zone Only show SNAT template if there are more then one zone. Signed-off-by: Florian Eckert --- diff --git a/applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm b/applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm index ce275111d..0a5913fc0 100644 --- a/applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm +++ b/applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm @@ -1,8 +1,7 @@ <% local fw = require "luci.model.firewall".init() local nw = require "luci.model.network".init() - local wz = fw:get_zone("wan") - local lz = fw:get_zone("lan") + local zones = fw:get_zones() local keys, vals, a, k, v = {}, {} for k, v in ipairs(nw:get_interfaces()) do @@ -14,7 +13,7 @@ %>
- <% if wz and lz then %> + <% if #zones > 1 then %>