diff options
| author | Jo-Philipp Wich | 2017-10-25 12:23:45 +0000 |
|---|---|---|
| committer | Jo-Philipp Wich | 2017-10-25 12:23:47 +0000 |
| commit | fbe7f90eed4545e4b23a940a47043a2001625429 (patch) | |
| tree | 70e126d532ca945342bfd5867f7ea5c609c496a8 | |
| parent | 3e00e13e1f2a2518de9e14090384f75b94329d98 (diff) | |
| download | luci-fbe7f90eed4545e4b23a940a47043a2001625429.tar.gz | |
luci-base: fix client side "host" datatype validator
Fixes #1413.
Reported-by: Wojciech Jowsa <wojciech.jowsa@gmail.com>
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
| -rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/cbi.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/cbi.js b/modules/luci-base/htdocs/luci-static/resources/cbi.js index 884eb62f68..b334703bdf 100644 --- a/modules/luci-base/htdocs/luci-static/resources/cbi.js +++ b/modules/luci-base/htdocs/luci-static/resources/cbi.js @@ -229,7 +229,7 @@ var cbi_validators = { { return cbi_validators.hostname.apply(this) || ((ipv4only != 1) && cbi_validators.ipaddr.apply(this)) || - ((ipv4only == 1) && cb_validators.ip4addr.apply(this)); + ((ipv4only == 1) && cbi_validators.ip4addr.apply(this)); }, 'hostname': function() |