From c478101ca48475373198e7ad69263e4b3b584bec Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sat, 21 Nov 2015 13:53:33 +0100 Subject: [PATCH] luci-mod-admin-full: fix script regression after 152ba9ab228ad4ea4c1748f29fe4ffa5f8f74ac6 Signed-off-by: Jo-Philipp Wich --- .../luci-mod-admin-full/luasrc/view/admin_network/iface_status.htm | 5 ++--- 1 file 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 += '
'; -- 2.11.0