diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/firewall.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/firewall.js b/modules/luci-base/htdocs/luci-static/resources/firewall.js index f7b731e6f..b1c7de435 100644 --- a/modules/luci-base/htdocs/luci-static/resources/firewall.js +++ b/modules/luci-base/htdocs/luci-static/resources/firewall.js @@ -140,7 +140,7 @@ Firewall = L.Class.extend({ var sections = uci.sections('firewall', 'zone'); for (var i = 0; i < sections.length; i++) - if (L.toArray(sections[i].network || sections[i].name).indexOf(network) != -1) + if (L.toArray(sections[i].network).indexOf(network) != -1) return new Zone(sections[i]['.name']); return null; @@ -202,9 +202,6 @@ Firewall = L.Class.extend({ if (sections[i].name != oldName) continue; - if (L.toArray(sections[i].network).length == 0) - uci.set('firewall', sections[i]['.name'], 'network', oldName); - uci.set('firewall', sections[i]['.name'], 'name', newName); found = true; } |