diff options
author | Jo-Philipp Wich <jo@mein.io> | 2018-04-06 09:35:39 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2018-04-06 09:35:39 +0200 |
commit | 08a2b27df5e282a6b5221fbe72f700523c7b0913 (patch) | |
tree | c4b636553f3364790dda0fb06d336c0729e86810 /applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua | |
parent | 24ac0d81ee56c5630b38aefbb5526e8bfcf6cd88 (diff) |
luci-app-mwan3: fix legacy uci api usage
Explicitely require libuci-lua in model classes that use legacy /var/state
cursor handling.
Also add a specific dependency on libuci-lua to the luci-app-mwan3
Makefile in preparation of the upcoming default removal of libuci-lua.
Finally fix the post data dispatching on the notification tab, see #1722
for reference.
Fixes #1726.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua')
-rw-r--r-- | applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua index fb885f8b3..f0b94bd0b 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua @@ -3,6 +3,7 @@ -- Licensed to the public under the GNU General Public License v2. dsp = require "luci.dispatcher" +uci = require "uci" function ruleCheck() |