mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
FIX Call Textarea validation extension
This commit is contained in:
parent
a0493cffff
commit
17c33231c4
@ -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()
|
||||||
|
Loading…
Reference in New Issue
Block a user