summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorOliver Kraitschy <okraits@arcor.de>2015-03-06 09:34:51 +0100
committerOliver Kraitschy <okraits@arcor.de>2015-03-06 09:34:51 +0100
commit29d1417e8b1b3620578febb3cf3da6349bc09702 (patch)
tree78b2b34bc87adcd8b023a686bee8dd3025acdb6c /app
parent313318a40da51575212c8d299fa1b2ed4c83ca1b (diff)
Create subtask with title maxlength 100.
Diffstat (limited to 'app')
-rw-r--r--app/Template/subtask/create.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/subtask/create.php b/app/Template/subtask/create.php
index be7fc311..112c26d4 100644
--- a/app/Template/subtask/create.php
+++ b/app/Template/subtask/create.php
@@ -9,7 +9,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/>