From 09fa7f18c925747c55d8ce09623a20d2df5a9563 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 27 Oct 2009 21:38:15 +0000 Subject: [PATCH] libs/uci: support custom initalizers in luci.model.uci.bind --- libs/uci/luasrc/model/uci/bind.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/uci/luasrc/model/uci/bind.lua b/libs/uci/luasrc/model/uci/bind.lua index 6f9060d22..84cfc773f 100644 --- a/libs/uci/luasrc/model/uci/bind.lua +++ b/libs/uci/luasrc/model/uci/bind.lua @@ -45,6 +45,10 @@ function bind.section(self, stype) inst.bind = self inst.stype = stype inst.sid = sid + + if inst._init then + inst:_init(sid) + end end return x end -- 2.11.0