From 915a64ca6228e85ca3ac2eeaf283b1a0da9f8998 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Wed, 16 Sep 2020 10:27:13 +0200 Subject: [PATCH] luci-app-nextdns: fix invalid XHTML Fixes: #4423 Signed-off-by: Jo-Philipp Wich (backported from commit 233cacd9eb6919569f40d346901099956a3111d6) --- applications/luci-app-nextdns/luasrc/model/cbi/overview.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/applications/luci-app-nextdns/luasrc/model/cbi/overview.lua b/applications/luci-app-nextdns/luasrc/model/cbi/overview.lua index a932a85f89..3bb9a5e33a 100644 --- a/applications/luci-app-nextdns/luasrc/model/cbi/overview.lua +++ b/applications/luci-app-nextdns/luasrc/model/cbi/overview.lua @@ -2,7 +2,7 @@ local uci = require("luci.model.uci").cursor() nextdns = Map("nextdns", translate("NextDNS"), translate("NextDNS Configuration.") - .. "
" + .. "
" .. translatef("For further information, go to " .. "nextdns.io")) @@ -20,7 +20,7 @@ enabled.rmempty = false conf = s:option(Value, "config", translate("Configuration ID"), translate("The ID of your NextDNS configuration.") - .. "
" + .. "
" .. translate("Go to nextdns.io to create a configuration.")) conf.rmempty = false @@ -30,7 +30,7 @@ report_client_info.rmempty = false hardened_privacy = s:option(Flag, "hardened_privacy", translate("Hardened Privacy"), translate("When enabled, use DNS servers located in jurisdictions with strong privacy laws.") - .. "
" + .. "
" .. translate("Available locations are: Switzerland, Iceland, Finland, Panama and Hong Kong.")) hardened_privacy.rmempty = false -- 2.30.2