summaryrefslogtreecommitdiffhomepage
path: root/libs/cbi/luasrc/cbi.lua
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2009-11-22 20:32:56 +0000
committerSteven Barth <steven@midlink.org>2009-11-22 20:32:56 +0000
commit19758fae439cffad8adaf64f2e8f74ae452816ee (patch)
tree55339f37986fbc586131f2e8336e0ed0cc6262fa /libs/cbi/luasrc/cbi.lua
parentbbfdc9ea830aa14bd3d3ee7a394ba19fe707c9aa (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.lua1
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