diff options
author | Oliver Kraitschy <okraits@arcor.de> | 2015-03-06 09:36:01 +0100 |
---|---|---|
committer | Oliver Kraitschy <okraits@arcor.de> | 2015-03-06 09:36:01 +0100 |
commit | 7c238bee68330109c9d69fcfe7c4bc1e05c07ef8 (patch) | |
tree | c6a49231a1ad6d1137f8eb2783a73aea2f08c115 | |
parent | 29d1417e8b1b3620578febb3cf3da6349bc09702 (diff) |
Edit subtask with title maxlength 100.
-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 f34d9532..d00fc21d 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', 'maxlength="50"')) ?><br/> + <?= $this->formText('title', $values, $errors, array('required', 'autofocus', 'maxlength="100"')) ?><br/> <?= $this->formLabel(t('Assignee'), 'user_id') ?> <?= $this->formSelect('user_id', $users_list, $values, $errors) ?><br/> |