Merge pull request #1188 from dibdot/master
authorHannu Nyman <hannu.nyman@iki.fi>
Sat, 10 Jun 2017 07:20:31 +0000 (10:20 +0300)
committerGitHub <noreply@github.com>
Sat, 10 Jun 2017 07:20:31 +0000 (10:20 +0300)
luci-app-adblock: sync with adblock 2.7.1

applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua

index fe26965..38086c9 100644 (file)
@@ -17,7 +17,13 @@ m = Map("adblock", translate("Adblock"),
        .. "see online documentation</a>", "https://github.com/openwrt/packages/blob/master/net/adblock/files/README.md"))
 
 function m.on_after_commit(self)
-       luci.sys.call("/etc/init.d/adblock reload >/dev/null 2>&1")
+       function e3.validate(self, value)
+               if value == "0" then
+                       luci.sys.call("/etc/init.d/adblock reload >/dev/null 2>&1")
+               else
+                       luci.sys.call("/etc/init.d/adblock start >/dev/null 2>&1")
+               end
+       end
        luci.http.redirect(luci.dispatcher.build_url("admin", "services", "adblock"))
 end