Merge pull request #45 from kinglozzer/patch-3

Override DropdownField::validate() in StringTagField
This commit is contained in:
Christopher Pitt 2015-09-23 20:59:31 +12:00
commit 9eb9b35871

View File

@ -282,4 +282,16 @@ class StringTagField 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;
}
}