summaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-06-07 13:44:50 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-06-07 13:44:50 +0000
commit95aa9593c52ce2c73c3803221819ec8353656d2e (patch)
tree4f3db4b66e47503333f9618a9ffdcf01aae55ff3 /modules
parent2863c0e2ed9904c322fbf0f6c5d3f90ec2fdb030 (diff)
modules/admin-full: filter options column through pcdata() in iptables status page
Diffstat (limited to 'modules')
-rw-r--r--modules/admin-full/luasrc/view/admin_status/iptables.htm2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/admin-full/luasrc/view/admin_status/iptables.htm b/modules/admin-full/luasrc/view/admin_status/iptables.htm
index 60a498fad..b8f664c86 100644
--- a/modules/admin-full/luasrc/view/admin_status/iptables.htm
+++ b/modules/admin-full/luasrc/view/admin_status/iptables.htm
@@ -106,7 +106,7 @@ $Id$
<td><%=link_iface(rule.outputif)%></td>
<td><%=rule.source%></td>
<td><%=rule.destination%></td>
- <td style="width:30%"><small><%=#rule.options > 0 and table.concat(rule.options, " ") or "-"%></small></td>
+ <td style="width:30%"><small><%=#rule.options > 0 and luci.util.pcdata(table.concat(rule.options, " ")) or "-"%></small></td>
</tr>
<% end %>