luci-mod-network: function name mismatch fixed

Signed-off-by: Darius <jok.darius@gmail.com>
This commit is contained in:
Darius 2018-11-09 12:38:33 +02:00 committed by Jo-Philipp Wich
parent 30e9f671a0
commit 7bffa401ff

View file

@ -103,7 +103,7 @@ table.sort(netlist,
s = m:section(TypedSection, "interface", translate("Interface Overview"))
function s.sections(self)
function s.cfgsections(self)
local _, net, sl = nil, nil, { }
for _, net in ipairs(netlist) do
@ -121,10 +121,6 @@ end
o = s:option(Value, "__disable__")
function o.cfgvalue(self, sid)
return (m:get(sid, "auto") == "0") and "1" or "0"
end
function o.write(self, sid, value)
if value ~= "1" then
m:set(sid, "auto", "")