diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-11-28 06:51:33 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-11-28 06:51:33 +0000 |
commit | 45cedb0fbd1da30558246214f69f4dba969d47e4 (patch) | |
tree | 3c1ef643bb2b70a19e21cb66fce8236151c0c07f /modules | |
parent | 9c6efa15544b5523d69f06f6b798c970eeb2932d (diff) |
modules/admin-full: fix ordering
Diffstat (limited to 'modules')
-rw-r--r-- | modules/admin-full/luasrc/view/admin_status/bandwidth.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/admin-full/luasrc/view/admin_status/bandwidth.htm b/modules/admin-full/luasrc/view/admin_status/bandwidth.htm index 25701fb41..f9e1e2e93 100644 --- a/modules/admin-full/luasrc/view/admin_status/bandwidth.htm +++ b/modules/admin-full/luasrc/view/admin_status/bandwidth.htm @@ -17,7 +17,7 @@ $Id$ local dev local devices = { } - for _, dev in luci.util.kspairs(luci.sys.net.devices()) do + for _, dev in luci.util.vspairs(luci.sys.net.devices()) do if dev ~= "lo" and not ntm:ignore_interface(dev) then devices[#devices+1] = dev end |