diff options
author | Michael Lüpkes <michael@luepkes.net> | 2015-01-13 14:09:02 +0100 |
---|---|---|
committer | Michael Lüpkes <michael@luepkes.net> | 2015-01-13 14:09:02 +0100 |
commit | 569c99a73302271b80cd7c8a25356ea285606563 (patch) | |
tree | e37bd3d783a1b24a58fdfbc26278c97aa5c66a60 /app/Template/subtask/edit.php | |
parent | 34bbdaeac8c407a97a611cb858617eff3483dbb3 (diff) |
set maxlength for name input fields in templates
Diffstat (limited to 'app/Template/subtask/edit.php')
-rw-r--r-- | app/Template/subtask/edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/subtask/edit.php b/app/Template/subtask/edit.php index 4920eb32..8350dc09 100644 --- a/app/Template/subtask/edit.php +++ b/app/Template/subtask/edit.php @@ -10,7 +10,7 @@ <?= $this->formHidden('task_id', $values) ?> <?= $this->formLabel(t('Title'), 'title') ?> - <?= $this->formText('title', $values, $errors, array('required autofocus')) ?><br/> + <?= $this->formText('title', $values, $errors, array('required', 'autofocus', 'maxlength="50"')) ?><br/> <?= $this->formLabel(t('Status'), 'status') ?> <?= $this->formSelect('status', $status_list, $values, $errors) ?><br/> |