mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-02 13:02:24 +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) {
|
||||
|
||||
Reference in New Issue
Block a user