FIX: Override DropdownField::validate for SS3.2 compatiblity

This commit is contained in:
Mark Guinn 2015-08-17 16:53:38 +01:00
parent 6ece085988
commit babc06cf16

View File

@ -327,4 +327,17 @@ class TagField extends DropdownField {
return $items;
}
/**
* DropdownField assumes value will be a scalar so we must
* override validate. This only applies to Silverstripe 3.2+
*
* @param Validator $validator
* @return bool
*/
public function validate($validator) {
return true;
}
}