luci-app-simple-adblock: bugfix: fix invalid <br> entries 3169/head
authorStan Grishin <stangri@melmac.net>
Thu, 10 Oct 2019 12:12:12 +0000 (05:12 -0700)
committerStan Grishin <stangri@melmac.net>
Thu, 10 Oct 2019 12:12:12 +0000 (05:12 -0700)
Signed-off-by: Stan Grishin <stangri@melmac.net>
applications/luci-app-simple-adblock/Makefile
applications/luci-app-simple-adblock/luasrc/controller/simple-adblock.lua
applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua

index b7d1a79fbc253714406e67bb1d5822f945c54ecb..a46abb821e1a4956510ee9f0574abf1bd2beaa32 100644 (file)
@@ -10,7 +10,7 @@ LUCI_TITLE:=Simple Adblock Web UI
 LUCI_DESCRIPTION:=Provides Web UI for simple-adblock service.
 LUCI_DEPENDS:=+luci-mod-admin-full +simple-adblock
 LUCI_PKGARCH:=all
-PKG_RELEASE:=37
+PKG_RELEASE:=38
 
 include ../../luci.mk
 
index 98f69ac968f71b79457674c89a1c3fb3a6334362..acfea5bf38974bc3f740ae8e93de4c75a254d886 100644 (file)
@@ -1,7 +1,6 @@
 module("luci.controller.simple-adblock", package.seeall)
 function index()
-       if not nixio.fs.access("/etc/config/simple-adblock") then
-               return
+       if nixio.fs.access("/etc/config/simple-adblock") then
+               entry({"admin", "services", "simple-adblock"}, cbi("simple-adblock"), _("Simple AdBlock"))
        end
-       entry({"admin", "services", "simple-adblock"}, cbi("simple-adblock"), _("Simple AdBlock"))
 end
index f4153355d6875aa0b6fddc89cd00e2f075659ebb..9f392a20c7a57f92e11dd70094a0925a7d104544 100644 (file)
@@ -187,15 +187,15 @@ local dns_descr = translate("Pick the DNS resolution option to create the adbloc
                .. translate("README") .. [[</a>]] .. " " .. translate("for details.")
 
 if not checkDnsmasq then
-       dns_descr = dns_descr .. "</br>" .. translate("Please note that") .. " <i>dnsmasq.addnhosts</i> " .. translate("is not supported on this system.")
-       dns_descr = dns_descr .. "</br>" .. translate("Please note that") .. " <i>dnsmasq.conf</i> " .. translate("is not supported on this system.")
-       dns_descr = dns_descr .. "</br>" .. translate("Please note that") .. " <i>dnsmasq.ipset</i> " .. translate("is not supported on this system.")
-       dns_descr = dns_descr .. "</br>" .. translate("Please note that") .. " <i>dnsmasq.servers</i> " .. translate("is not supported on this system.")
+       dns_descr = dns_descr .. "<br />" .. translate("Please note that") .. " <i>dnsmasq.addnhosts</i> " .. translate("is not supported on this system.")
+       dns_descr = dns_descr .. "<br />" .. translate("Please note that") .. " <i>dnsmasq.conf</i> " .. translate("is not supported on this system.")
+       dns_descr = dns_descr .. "<br />" .. translate("Please note that") .. " <i>dnsmasq.ipset</i> " .. translate("is not supported on this system.")
+       dns_descr = dns_descr .. "<br />" .. translate("Please note that") .. " <i>dnsmasq.servers</i> " .. translate("is not supported on this system.")
 elseif not checkDnsmasqIpset then 
-       dns_descr = dns_descr .. "</br>" .. translate("Please note that") .. " <i>dnsmasq.ipset</i> " .. translate("is not supported on this system.")
+       dns_descr = dns_descr .. "<br />" .. translate("Please note that") .. " <i>dnsmasq.ipset</i> " .. translate("is not supported on this system.")
 end
 if not checkUnbound then 
-       dns_descr = dns_descr .. "</br>" .. translate("Please note that") .. " <i>unbound.adb_list</i> " .. translate("is not supported on this system.")
+       dns_descr = dns_descr .. "<br />" .. translate("Please note that") .. " <i>unbound.adb_list</i> " .. translate("is not supported on this system.")
 end
 
 dns = s:taboption("advanced", ListValue, "dns", translate("DNS Service"), dns_descr)