From fdb6aaa809f766f9203be992833162b825b8f1a6 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Mon, 10 Feb 2020 20:52:15 +0100 Subject: [PATCH] increase default field size to 1000 --- lam/lib/html.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lam/lib/html.inc b/lam/lib/html.inc index e68e5a33..231a07b9 100644 --- a/lam/lib/html.inc +++ b/lam/lib/html.inc @@ -438,8 +438,8 @@ class htmlInputField extends htmlElement { protected $fieldValue; /** field size (default 30) */ protected $fieldSize = 30; - /** field max length (default 255) */ - protected $fieldMaxLength = 255; + /** field max length (default 1000) */ + protected $fieldMaxLength = 1000; /** on keypress event */ protected $onKeyPress = null; /** on keyupp event */