From: Jo-Philipp Wich Date: Wed, 25 Oct 2017 12:23:45 +0000 (+0200) Subject: Fixes #1413. X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=07e7ff07aa45ca8b49ab7290bce89aac6994f9a0;p=project%2Fluci.git Fixes #1413. Reported-by: Wojciech Jowsa Signed-off-by: Jo-Philipp Wich (cherry picked from commit fbe7f90eed4545e4b23a940a47043a2001625429) --- diff --git a/modules/luci-base/htdocs/luci-static/resources/cbi.js b/modules/luci-base/htdocs/luci-static/resources/cbi.js index 8e66cbc38..0a362affb 100644 --- a/modules/luci-base/htdocs/luci-static/resources/cbi.js +++ b/modules/luci-base/htdocs/luci-static/resources/cbi.js @@ -189,7 +189,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()