diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-09-25 22:58:17 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-09-25 22:58:17 +0000 |
commit | 8eb93354138685a83a3ae9994be770ceb63bf9fe (patch) | |
tree | ce9cf122b477d5459b3c3fc138838492b055cb37 /modules/admin-full/luasrc/view | |
parent | 1f1377fdc461ef8f4faad7a95a55a3eb9431eb38 (diff) |
modules/admin-full: fix two issues observed on a virgin install
Diffstat (limited to 'modules/admin-full/luasrc/view')
-rw-r--r-- | modules/admin-full/luasrc/view/admin_network/iface_overview.htm | 4 |
1 files changed, 2 insertions, 2 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 edfed7d7d2..6a94c2dfe8 100644 --- a/modules/admin-full/luasrc/view/admin_network/iface_overview.htm +++ b/modules/admin-full/luasrc/view/admin_network/iface_overview.htm @@ -74,9 +74,9 @@ $Id$ { if (ifcs) { - for (var i = 0; i < ifcs.length; i++) + for (var idx = 0; idx < ifcs.length; idx++) { - var ifc = ifcs[i]; + var ifc = ifcs[idx]; var html = ''; var s = document.getElementById(ifc.id + '-ifc-devices'); |