From 7d53888477b39f48deac39ad330838505c47e8d7 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Fri, 8 Oct 2021 19:42:43 +0200 Subject: [PATCH] luci-app-privoxy: fix markup which is not valid XHTML XHTML does not specify ` `, use ` ` instead. Signed-off-by: Jo-Philipp Wich --- .../luasrc/controller/privoxy.lua | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/applications/luci-app-privoxy/luasrc/controller/privoxy.lua b/applications/luci-app-privoxy/luasrc/controller/privoxy.lua index 808ddbb447..7d4d982658 100644 --- a/applications/luci-app-privoxy/luasrc/controller/privoxy.lua +++ b/applications/luci-app-privoxy/luasrc/controller/privoxy.lua @@ -72,25 +72,25 @@ end function service_update() local url = DISP.build_url("admin", "system", "packages") if not service_version() then - return [[


    ]] + return [[


    ]] .. I18N.translate("Software package '%s' is not installed." % srv_name) - .. [[

    ]] + .. [[


    ]] .. I18N.translate("required") .. [[: ]] .. srv_name .. [[ ]] .. srv_ver_min .. " " .. I18N.translate("or higher") - .. [[

    ]] + .. [[

    ]] .. [[]] .. I18N.translate("Please install current version !") - .. [[
 

]] + .. [[
 

]] else - return [[



    ]] + return [[



    ]] .. I18N.translate("Software package '%s' is outdated." % srv_name) - .. [[

    ]] + .. [[


    ]] .. I18N.translate("installed") .. ": " .. service_version() - .. [[

    ]] + .. [[

    ]] .. I18N.translate("required") .. ": " .. srv_ver_min .. " " .. I18N.translate("or higher") - .. [[

    ]] + .. [[

    ]] .. [[]] .. I18N.translate("Please update to the current version!") - .. [[

 

]] + .. [[

 

]] end end -- 2.30.2