luci-app-nextdns: fix invalid XHTML
authorJo-Philipp Wich <jo@mein.io>
Wed, 16 Sep 2020 08:27:13 +0000 (10:27 +0200)
committerJo-Philipp Wich <jo@mein.io>
Wed, 16 Sep 2020 08:29:41 +0000 (10:29 +0200)
Fixes: #4423
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(backported from commit 233cacd9eb6919569f40d346901099956a3111d6)

applications/luci-app-nextdns/luasrc/model/cbi/overview.lua

index a932a85f89650b9da5d3a597460300cc66c368fd..3bb9a5e33a10f1349d2b4a570feab0f226435dea 100644 (file)
@@ -2,7 +2,7 @@ local uci = require("luci.model.uci").cursor()
 
 nextdns = Map("nextdns", translate("NextDNS"),
        translate("NextDNS Configuration.")
-       .. "<br>"
+       .. "<br />"
        .. translatef("For further information, go to "
        ..            "<a href=\"https://nextdns.io\" target=\"_blank\">nextdns.io</a>"))
 
@@ -20,7 +20,7 @@ enabled.rmempty = false
 
 conf = s:option(Value, "config", translate("Configuration ID"),
        translate("The ID of your NextDNS configuration.")
-       .. "<br>"
+       .. "<br />"
        .. 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.")
-       .. "<br>"
+       .. "<br />"
        .. translate("Available locations are: Switzerland, Iceland, Finland, Panama and Hong Kong."))
 hardened_privacy.rmempty = false