FIX: Fixes #833 After peer review.

This commit is contained in:
Jose Pereira 2019-01-16 15:08:42 +13:00
parent 4ebcfccf44
commit 0fd0b3fc1f
1 changed files with 3 additions and 3 deletions

View File

@ -110,9 +110,9 @@ class EditableTextField extends EditableFormField
if ($this->MinLength > $this->MaxLength) {
$result->addError(_t(
__CLASS__ . 'MINMAXLENGTHCHECK',
'Minimum length should be less than the Maximum length.'
));
__CLASS__ . 'MINMAXLENGTHCHECK',
'Minimum length should be less than the Maximum length.'
));
}
return $result;