diff options
author | Steven Barth <steven@midlink.org> | 2008-08-15 18:18:16 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-08-15 18:18:16 +0000 |
commit | d212e531d5b2b5933676b3ec3004c2be60980f97 (patch) | |
tree | 22be5c2b8563f62701621a1ae62d376b3efb682b /modules/admin-full/luasrc/view | |
parent | 5941f334ff118be916468101c7994a92e86cf0c2 (diff) |
Added missing value escaping
Fixed a typo (wrong if-condition)
Added support for Table objects in CBI
Diffstat (limited to 'modules/admin-full/luasrc/view')
-rw-r--r-- | modules/admin-full/luasrc/view/admin_status/iwscan.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/admin-full/luasrc/view/admin_status/iwscan.htm b/modules/admin-full/luasrc/view/admin_status/iwscan.htm index cbba791e6..c0290d086 100644 --- a/modules/admin-full/luasrc/view/admin_status/iwscan.htm +++ b/modules/admin-full/luasrc/view/admin_status/iwscan.htm @@ -34,7 +34,7 @@ $Id$ %> <tr> <td><%=iface%></td> -<td><%=cell.ESSID%></td> +<td><%=luci.util.pcdata(cell.ESSID)%></td> <td><%=cell.Address%></td> <td><%=cell.Mode%></td> <td><%=(cell.Channel or cell.Frequency or "")%></td> |