summaryrefslogtreecommitdiffhomepage
path: root/libs
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-12-26 00:09:47 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-12-26 00:09:47 +0000
commit0ddedc638cc78d3e073ebb2dc6f31c2e12e0d247 (patch)
tree046f883c3b22c13b529306c5d534c7b85d000789 /libs
parent9a6b4312493d750fe89c5b253f357e7399448c89 (diff)
libs/cbi: don't filter bridge ports in firewall zone widget
Diffstat (limited to 'libs')
-rw-r--r--libs/cbi/luasrc/view/cbi/firewall_zonelist.htm5
1 files changed, 2 insertions, 3 deletions
diff --git a/libs/cbi/luasrc/view/cbi/firewall_zonelist.htm b/libs/cbi/luasrc/view/cbi/firewall_zonelist.htm
index d7cea4edb..4f4106b87 100644
--- a/libs/cbi/luasrc/view/cbi/firewall_zonelist.htm
+++ b/libs/cbi/luasrc/view/cbi/firewall_zonelist.htm
@@ -63,11 +63,10 @@ $Id$
<%
local nempty = true
for _, iface in ipairs(net and net:get_interfaces() or {}) do
- if not iface:is_bridgeport() then
- nempty = false
+ nempty = false
%>
<img<%=attr("title", iface:get_i18n())%> style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" />
- <% end end %>
+ <% end %>
<% if nempty then %><em><%:(no interfaces attached)%></em><% end %>
</span>
<% end end %>