diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-11-03 19:44:17 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-11-03 19:44:17 +0000 |
commit | 0abb1420e7e03f17ac7d60d6eb7e7aab905da3eb (patch) | |
tree | 19503b60d99409a9e2241b812aee98df300511c4 /modules | |
parent | a9160dfcf4436bb0ea84fdd529a246541a10639c (diff) |
modules/admin-full: add missing html escaping for SSID in associated stations table of wireless overview
Diffstat (limited to 'modules')
-rw-r--r-- | modules/admin-full/luasrc/view/admin_network/wifi_overview.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/admin-full/luasrc/view/admin_network/wifi_overview.htm b/modules/admin-full/luasrc/view/admin_network/wifi_overview.htm index 44ce5ed9a..5500224a3 100644 --- a/modules/admin-full/luasrc/view/admin_network/wifi_overview.htm +++ b/modules/admin-full/luasrc/view/admin_network/wifi_overview.htm @@ -300,7 +300,7 @@ $Id$ icon, assoclist[j].signal, assoclist[j].noise ); - tr.insertCell(-1).innerHTML = iw.ssid ? iw.ssid : '?'; + tr.insertCell(-1).innerHTML = String.format('%h', iw.ssid ? iw.ssid : '?'); tr.insertCell(-1).innerHTML = assoclist[j].bssid; tr.insertCell(-1).innerHTML = arptable[assoclist[j].bssid] |