summaryrefslogtreecommitdiff
path: root/app/Template/subtask/edit.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-03-09 21:48:45 -0400
committerFrederic Guillot <fred@kanboard.net>2015-03-09 21:48:45 -0400
commit900e3fa1fd0a41e1617cd42a83b34d4c39d1730f (patch)
treef9a138705d13c0afd2985b4d5baaa0db735e7120 /app/Template/subtask/edit.php
parentf55e12d5eebd57375b3f67eb0eb75f231d680113 (diff)
Bust subtask title max length to 255 characters
Diffstat (limited to 'app/Template/subtask/edit.php')
-rw-r--r--app/Template/subtask/edit.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/subtask/edit.php b/app/Template/subtask/edit.php
index d00fc21d..3058ff44 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="100"')) ?><br/>
+ <?= $this->formText('title', $values, $errors, array('required', 'autofocus', 'maxlength="255"')) ?><br/>
<?= $this->formLabel(t('Assignee'), 'user_id') ?>
<?= $this->formSelect('user_id', $users_list, $values, $errors) ?><br/>