Merge branch '5.0' into 5.1

This commit is contained in:
Steve Boyd 2023-09-07 12:59:45 +12:00
commit 724d8c9047

View File

@ -174,6 +174,7 @@ class TextareaField extends FormField
*/ */
public function validate($validator) public function validate($validator)
{ {
$result = true;
if (!is_null($this->maxLength) && mb_strlen($this->value ?? '') > $this->maxLength) { if (!is_null($this->maxLength) && mb_strlen($this->value ?? '') > $this->maxLength) {
$name = strip_tags($this->Title() ? $this->Title() : $this->getName()); $name = strip_tags($this->Title() ? $this->Title() : $this->getName());
$validator->validationError( $validator->validationError(
@ -185,9 +186,9 @@ class TextareaField extends FormField
), ),
"validation" "validation"
); );
return false; $result = false;
} }
return true; return $this->extendValidationResult($result, $validator);
} }
public function getSchemaValidation() public function getSchemaValidation()