luci-mod-admin-full: fix script regression after 152ba9ab22

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
This commit is contained in:
Jo-Philipp Wich 2015-11-21 13:53:33 +01:00
parent 55f458326d
commit c478101ca4

View file

@ -57,10 +57,9 @@
for (var i = 0; i < ifc.ip6addrs.length; i++) for (var i = 0; i < ifc.ip6addrs.length; i++)
html += String.format( html += String.format(
'%s%s/%d', '%s%s',
i ? ', ' : '', i ? ', ' : '',
ifc.ip6addrs[i].addr.toUpperCase(), ifc.ip6addrs[i].toUpperCase()
ifc.ip6addrs[i].prefix
); );
html += '<br />'; html += '<br />';