diff options
author | Steven Barth <steven@midlink.org> | 2008-08-07 20:21:38 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-08-07 20:21:38 +0000 |
commit | fbae92e522692d9bb34501ad9a805da794a47123 (patch) | |
tree | 2cf9e565ee268d4745177726ca29aae569a1876f /libs/cbi/luasrc | |
parent | e72a526984982f6fa2b6f2ed5ce01523094bfe43 (diff) |
modules/admin-full: Added support for interface aliases
Diffstat (limited to 'libs/cbi/luasrc')
-rw-r--r-- | libs/cbi/luasrc/cbi.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/cbi/luasrc/cbi.lua b/libs/cbi/luasrc/cbi.lua index ff33604254..4b4bf39059 100644 --- a/libs/cbi/luasrc/cbi.lua +++ b/libs/cbi/luasrc/cbi.lua @@ -487,7 +487,7 @@ end -- Verifies scope of sections function TypedSection.checkscope(self, section) -- Check if we are not excluded - if self.filter and not self.filter(section) then + if self.filter and not self:filter(section) then return nil end |