mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-13 20:59:12 +08:00
Additional RangeValidator fixes
This commit is contained in:
@@ -92,6 +92,11 @@ yii.validation = (function ($) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!options.allowArray && $.isArray(value)) {
|
||||
pub.addMessage(messages, options.message, value);
|
||||
return;
|
||||
}
|
||||
|
||||
var inArray = true;
|
||||
|
||||
$.each(value, function(i, v) {
|
||||
|
||||
@@ -94,6 +94,9 @@ class RangeValidator extends Validator
|
||||
if ($this->skipOnEmpty) {
|
||||
$options['skipOnEmpty'] = 1;
|
||||
}
|
||||
if ($this->allowArray) {
|
||||
$options['allowArray'] = 1;
|
||||
}
|
||||
|
||||
ValidationAsset::register($view);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user