diff options
author | Steven Barth <steven@midlink.org> | 2009-11-22 20:32:56 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2009-11-22 20:32:56 +0000 |
commit | 19758fae439cffad8adaf64f2e8f74ae452816ee (patch) | |
tree | 55339f37986fbc586131f2e8336e0ed0cc6262fa /libs/cbi/luasrc/cbi.lua | |
parent | bbfdc9ea830aa14bd3d3ee7a394ba19fe707c9aa (diff) |
CBI:
Implement reverse dependencies
Allow wiazrd steps without buttons
Diffstat (limited to 'libs/cbi/luasrc/cbi.lua')
-rw-r--r-- | libs/cbi/luasrc/cbi.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/cbi/luasrc/cbi.lua b/libs/cbi/luasrc/cbi.lua index 9b947cb2f0..e265589746 100644 --- a/libs/cbi/luasrc/cbi.lua +++ b/libs/cbi/luasrc/cbi.lua @@ -616,6 +616,7 @@ function Delegator.parse(self, ...) self.current = newcurrent or self.current self.active = self:get(self.current) if type(self.active) ~= "function" then + self.active:populate_delegator(self) self.active:parse(false) return FROM_PROCEED else |