diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-11-21 13:53:33 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-11-21 13:53:43 +0100 |
commit | c478101ca48475373198e7ad69263e4b3b584bec (patch) | |
tree | fd08d2fd2bf64125fd97380fc37da8e1ee543994 /modules/luci-mod-admin-full | |
parent | 55f458326dc77dd35dce2c22df2353b2a0192627 (diff) |
luci-mod-admin-full: fix script regression after 152ba9ab228ad4ea4c1748f29fe4ffa5f8f74ac6
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Diffstat (limited to 'modules/luci-mod-admin-full')
-rw-r--r-- | modules/luci-mod-admin-full/luasrc/view/admin_network/iface_status.htm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/luci-mod-admin-full/luasrc/view/admin_network/iface_status.htm b/modules/luci-mod-admin-full/luasrc/view/admin_network/iface_status.htm index adf6dccd5..94d9e8811 100644 --- a/modules/luci-mod-admin-full/luasrc/view/admin_network/iface_status.htm +++ b/modules/luci-mod-admin-full/luasrc/view/admin_network/iface_status.htm @@ -57,10 +57,9 @@ for (var i = 0; i < ifc.ip6addrs.length; i++) html += String.format( - '%s%s/%d', + '%s%s', i ? ', ' : '', - ifc.ip6addrs[i].addr.toUpperCase(), - ifc.ip6addrs[i].prefix + ifc.ip6addrs[i].toUpperCase() ); html += '<br />'; |