diff options
author | Christian Schoenebeck <christian.schoenebeck@gmail.com> | 2015-11-09 21:46:01 +0100 |
---|---|---|
committer | Christian Schoenebeck <christian.schoenebeck@gmail.com> | 2015-11-09 21:46:01 +0100 |
commit | 8e3a24f7cdbe934612f79959548e914fe890ba8c (patch) | |
tree | 9aa162c8482387384d58da5198ba710a1ca54c5c /applications/luci-app-radicale/luasrc | |
parent | 1de2606e9fad40b129c71230698d53d4f74d7dfc (diff) |
luci-app-radicale: remove map.title hack
remove map.title hack; no longer needed
Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
Diffstat (limited to 'applications/luci-app-radicale/luasrc')
-rw-r--r-- | applications/luci-app-radicale/luasrc/controller/radicale.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/applications/luci-app-radicale/luasrc/controller/radicale.lua b/applications/luci-app-radicale/luasrc/controller/radicale.lua index 35f5a83a0..10ec1fe54 100644 --- a/applications/luci-app-radicale/luasrc/controller/radicale.lua +++ b/applications/luci-app-radicale/luasrc/controller/radicale.lua @@ -82,7 +82,7 @@ function service_ok() end function app_title_main() - return [[</a><a href="javascript:alert(']] + return [[<a href="javascript:alert(']] .. I18N.translate("Version Information") .. [[\n\n]] .. luci_app_name() .. [[\n\t]] .. I18N.translate("Version") .. [[:\t]] @@ -100,12 +100,14 @@ function app_title_main() .. [[\n\n]] .. [[')">]] .. I18N.translate("Radicale CalDAV/CardDAV Server") + .. [[</a>]] end function app_title_back() - return [[</a><a href="]] + return [[<a href="]] .. DISP.build_url("admin", "services", "radicale") .. [[">]] .. I18N.translate("Radicale CalDAV/CardDAV Server") + .. [[</a>]] end function app_description() return I18N.translate("The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) server solution.") .. [[<br />]] |