diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-11-08 22:35:24 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-11-08 22:35:24 +0000 |
commit | f8a2f2c059d47320bf43434cd04030a0f80e08ec (patch) | |
tree | 948938cf2c7cabd16150337df14044fe11ec3591 | |
parent | f812eb91ff5671c6fe597e2a48e1695ee258740e (diff) |
modules/admin-full: fix html escaping on interface overview page
-rw-r--r-- | modules/admin-full/luasrc/view/admin_network/iface_overview.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/admin-full/luasrc/view/admin_network/iface_overview.htm b/modules/admin-full/luasrc/view/admin_network/iface_overview.htm index 21990bb7d..c14604bd8 100644 --- a/modules/admin-full/luasrc/view/admin_network/iface_overview.htm +++ b/modules/admin-full/luasrc/view/admin_network/iface_overview.htm @@ -105,7 +105,7 @@ $Id$ } stat += String.format( - '<br /><small>%s</small>', + '<br /><small>%h</small>', ifc.name ); |