Merge pull request #10320 from tafid/ip-validator-js

Fixed client-side IP validator
This commit is contained in:
Dmitry Naumenko
2015-12-03 17:39:51 +02:00

View File

@@ -341,9 +341,9 @@ yii.validation = (function ($) {
var matches = new RegExp(options.ipParsePattern).exec(value); var matches = new RegExp(options.ipParsePattern).exec(value);
if (matches) { if (matches) {
negation = (matches[1] !== '') ? matches[1] : null; negation = matches[1] || null;
cidr = (matches[4] !== '') ? matches[4] : null;
value = matches[2]; value = matches[2];
cidr = matches[4] || null;
} }
if (options.subnet === true && cidr === null) { if (options.subnet === true && cidr === null) {