Merge pull request #509 from neheb/master
[project/luci.git] / applications / luci-app-ddns / luasrc / model / cbi / ddns / global.lua
index 32ca541..25d09b7 100644 (file)
@@ -7,15 +7,11 @@ local DISP = require "luci.dispatcher"
 local SYS  = require "luci.sys"
 local DDNS = require "luci.tools.ddns"         -- ddns multiused functions
 
--- Bootstrap theme needs 2 or 3 additional linefeeds for tab description for better optic
-local LFLF = (DDNS.get_theme() == "Bootstrap") and [[<br /><br />]] or [[]]
-
 -- 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.")
@@ -38,7 +34,8 @@ local ns = m:section( NamedSection, "global", "ddns",
        .. [[<a href="http://wiki.openwrt.org/doc/uci/ddns#version_2x1" target="_blank">]]
        .. translate("For detailed information about parameter settings look here.")
        .. [[</a>]]
-       .. LFLF )
+       )
+
 -- section might not exist
 function ns.cfgvalue(self, section)
        if not self.map:get(section) then
@@ -122,7 +119,6 @@ ll.title    = translate("Log length")
 ll.description = translate("Number of last lines stored in log files")
 ll.rmempty     = true
 ll.default     = "250"
-ll.datatype    = "and(uinteger,min(1))"
 function ll.validate(self, value)
        local n = tonumber(value)
        if not n or math.floor(n) ~= n or n < 1 then