diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2019-06-16 17:54:04 +0300 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2019-06-16 17:54:04 +0300 |
commit | cffeee49d7be19743cc40459fa1f423517f215c0 (patch) | |
tree | ba7dbb591bd005fa8f8e950db5187dd9865c5ab2 /applications | |
parent | ab70fb1ac6cd48539285dfaae7d28d29f487d8c3 (diff) |
treewide: fix datetype/datatype typo
Fix 'datetype' typo.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'applications')
-rw-r--r-- | applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua | 4 | ||||
-rw-r--r-- | applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua b/applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua index 0eda5d83e..2496259ba 100644 --- a/applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua +++ b/applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua @@ -190,7 +190,7 @@ o.optional = false o = s:option(Value, "hostname", translate("Hostname or address of UPS")) o.optional = false -s.datetype = "host" +s.datatype = "host" o = s:option(Value, "port", translate("Port")) o.optional = true @@ -219,7 +219,7 @@ o.optional = false o = s:option(Value, "hostname", translate("Hostname or address of UPS")) o.optional = false -s.datetype = "host" +s.datatype = "host" o = s:option(Value, "port", translate("Port")) o.optional = true diff --git a/applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua b/applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua index e967ce628..b86b06cf1 100644 --- a/applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua +++ b/applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua @@ -27,7 +27,7 @@ o.optional = true o.datatype = "uinteger" o = s:option(Value, "localip", translate("IP of listening side")) -o.datetype = "ipaddr" +o.datatype = "ipaddr" o = s:option(Value, "firstremoteip", translate("First remote IP")) o.datatype = "ipaddr" |