Browse Source

Add maxlength for textarea

Visman 2 years ago
parent
commit
caf684e67a
1 changed files with 1 additions and 0 deletions
  1. 1 0
      app/Models/Pages/PostFormTrait.php

+ 1 - 0
app/Models/Pages/PostFormTrait.php

@@ -91,6 +91,7 @@ trait PostFormTrait
             'required'  => true,
             'value'     => $vars['message'] ?? null,
             'autofocus' => $autofocus,
+            'maxlength' => $this->c->MAX_POST_SIZE,
         ];
         $form['sets']['uesm'] = [
             'fields' => $fieldset,