modules/admin-full: fix ordering

This commit is contained in:
Jo-Philipp Wich 2010-11-28 06:51:33 +00:00
parent 9c6efa1554
commit 45cedb0fbd

View file

@ -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