From 40d449c1d8347338843202aa04ce97f3534ef599 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Fri, 8 Oct 2021 19:43:03 +0200 Subject: luci-app-radicale: fix markup which is not valid XHTML XHTML does not specify ` `, use ` ` instead. Signed-off-by: Jo-Philipp Wich --- .../luci-app-radicale/luasrc/controller/radicale.lua | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'applications/luci-app-radicale/luasrc/controller') diff --git a/applications/luci-app-radicale/luasrc/controller/radicale.lua b/applications/luci-app-radicale/luasrc/controller/radicale.lua index 291f1b4dcc..53424207fa 100644 --- a/applications/luci-app-radicale/luasrc/controller/radicale.lua +++ b/applications/luci-app-radicale/luasrc/controller/radicale.lua @@ -58,25 +58,25 @@ function app_title_back() end function app_err_value() 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("Please install current version !") - .. [[
 

]] + .. [[
 

]] else - return [[


    ]] + return [[


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

      ]] + .. [[


      ]] .. I18N.translate("installed") .. [[: ]] .. srv_name .. [[ ]] .. service_version() - .. [[
      ]] + .. [[
      ]] .. I18N.translate("required") .. [[: ]] .. srv_name .. [[ ]] .. srv_ver_min - .. [[

    ]] + .. [[

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

]] + .. [[
 

]] end end -- cgit v1.2.3