Index: typo3/sysext/fluid/Classes/ViewHelpers/Form/TextareaViewHelper.php IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- typo3/sysext/fluid/Classes/ViewHelpers/Form/TextareaViewHelper.php (revision ) +++ typo3/sysext/fluid/Classes/ViewHelpers/Form/TextareaViewHelper.php (revision ) @@ -46,6 +46,7 @@ $this->registerTagAttribute('cols', 'int', 'The number of columns of a text area'); $this->registerTagAttribute('disabled', 'string', 'Specifies that the input element should be disabled when the page loads'); $this->registerTagAttribute('placeholder', 'string', 'The placeholder of the textarea'); + $this->registerTagAttribute('maxlength', 'int', 'The maxlength attribute of the input field (will not be validated)'); $this->registerArgument('errorClass', 'string', 'CSS class to set if there are errors for this view helper', FALSE, 'f3-form-error'); $this->registerUniversalTagAttributes(); }