From: Anton Kikin Date: Sun, 15 Jul 2018 12:44:03 +0000 (+0300) Subject: luci-base: network.lua: fix interface.ports() function return value X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=45725dfca6dbe6e24501712a827bbdf6f41d03e8;p=oweals%2Fluci.git luci-base: network.lua: fix interface.ports() function return value Signed-off-by: Anton Kikin --- diff --git a/modules/luci-compat/luasrc/model/network.lua b/modules/luci-compat/luasrc/model/network.lua index 7c88b428c..b3fc2a7c2 100644 --- a/modules/luci-compat/luasrc/model/network.lua +++ b/modules/luci-compat/luasrc/model/network.lua @@ -1447,6 +1447,7 @@ function interface.ports(self) for _, iface in ipairs(members) do ifaces[#ifaces+1] = interface(iface) end + return ifaces end end