luci-app-ddns: remove title <a> hacks
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
This commit is contained in:
parent
222284578b
commit
49a7c5bd03
4 changed files with 8 additions and 12 deletions
|
@ -108,9 +108,8 @@ end
|
|||
-- cbi-map definition -- #######################################################
|
||||
m = Map("ddns")
|
||||
|
||||
-- first need to close <a> from cbi map template our <a> closed by template
|
||||
m.title = [[</a><a href="]] .. DISP.build_url("admin", "services", "ddns") .. [[">]] ..
|
||||
translate("Dynamic DNS")
|
||||
m.title = [[<a href="]] .. DISP.build_url("admin", "services", "ddns") .. [[">]] ..
|
||||
translate("Dynamic DNS") .. [["</a>"]]
|
||||
|
||||
m.description = translate("Dynamic DNS allows that your router can be reached with " ..
|
||||
"a fixed hostname while having a dynamically changing " ..
|
||||
|
|
|
@ -10,9 +10,8 @@ local DDNS = require "luci.tools.ddns" -- ddns multiused functions
|
|||
-- cbi-map definition -- #######################################################
|
||||
local m = Map("ddns")
|
||||
|
||||
-- first need to close <a> from cbi map template our <a> closed by template
|
||||
m.title = [[</a><a href="]] .. DISP.build_url("admin", "services", "ddns") .. [[">]]
|
||||
.. translate("Dynamic DNS")
|
||||
m.title = [[<a href="]] .. DISP.build_url("admin", "services", "ddns") .. [[">]]
|
||||
.. translate("Dynamic DNS") .. [[</a>]]
|
||||
|
||||
m.description = translate("Dynamic DNS allows that your router can be reached with " ..
|
||||
"a fixed hostname while having a dynamically changing IP address.")
|
||||
|
|
|
@ -23,9 +23,8 @@ bold_off = [[</strong>]]
|
|||
-- cbi-map definition -- #######################################################
|
||||
m = Map("ddns")
|
||||
|
||||
-- first need to close <a> from cbi map template our <a> closed by template
|
||||
m.title = [[</a><a href="]] .. DISP.build_url("admin", "services", "ddns") .. [[">]] ..
|
||||
translate("Dynamic DNS")
|
||||
m.title = [[<a href="]] .. DISP.build_url("admin", "services", "ddns") .. [[">]] ..
|
||||
translate("Dynamic DNS") .. [[</a>]]
|
||||
|
||||
m.description = translate("Dynamic DNS allows that your router can be reached with " ..
|
||||
"a fixed hostname while having a dynamically changing " ..
|
||||
|
|
|
@ -26,8 +26,7 @@ bold_off = [[</strong>]]
|
|||
-- cbi-map definition -- #######################################################
|
||||
m = Map("ddns")
|
||||
|
||||
-- first need to close <a> from cbi map template our <a> closed by template
|
||||
m.title = [[</a><a href="javascript:alert(']]
|
||||
m.title = [[<a href="javascript:alert(']]
|
||||
.. translate("Version Information")
|
||||
.. [[\n\nluci-app-ddns]]
|
||||
.. [[\n\t]] .. translate("Version") .. [[:\t]] .. DDNS.ipkg_ver_installed("luci-app-ddns")
|
||||
|
@ -37,7 +36,7 @@ m.title = [[</a><a href="javascript:alert(']]
|
|||
.. [[\n\t]] .. translate("Version") .. [[:\t]] .. DDNS.ipkg_ver_installed("ddns-scripts")
|
||||
.. [[\n\n]]
|
||||
.. [[')">]]
|
||||
.. translate("Dynamic DNS")
|
||||
.. translate("Dynamic DNS") .. [[</a>]]
|
||||
|
||||
m.description = translate("Dynamic DNS allows that your router can be reached with " ..
|
||||
"a fixed hostname while having a dynamically changing " ..
|
||||
|
|
Loading…
Reference in a new issue