fixed dynapoint.lua, there was no translation

Signed-off-by: Vladimir <picfun@ya.ru>
This commit is contained in:
Vladimir 2018-01-23 21:48:28 +03:00 committed by Stan Grishin
parent ee409b66ce
commit 61cf344285
2 changed files with 7 additions and 5 deletions

View file

@ -7,9 +7,10 @@ PKG_LICENSE:=GPL-3.0+
PKG_MAINTAINER:=Stan Grishin <stangri@melmac.net>
LUCI_TITLE:=Simple Adblock Web UI
LUCI_DEPENDS:=+simple-adblock
LUCI_DESCRIPTION:=Provides Web UI for simple-adblock service.
LUCI_DEPENDS:=+luci +simple-adblock
LUCI_PKGARCH:=all
PKG_RELEASE:=2
PKG_RELEASE:=5
include ../../luci.mk

View file

@ -11,10 +11,11 @@ end
function e.write(self, section, value)
if value == "1" then
luci.sys.call("/etc/init.d/simple-adblock enable >/dev/null")
luci.sys.call("/etc/init.d/simple-adblock start >/dev/null")
luci.sys.init.enable("simple-adblock")
luci.sys.init.start("simple-adblock")
else
luci.sys.call("/etc/init.d/simple-adblock stop >/dev/null")
luci.sys.init.stop("simple-adblock")
luci.sys.init.disable("simple-adblock")
end
return Flag.write(self, section, value)
end