Edit subtask with title maxlength 100.

This commit is contained in:
Oliver Kraitschy 2015-03-06 09:36:01 +01:00
parent 29d1417e8b
commit 7c238bee68
1 changed files with 1 additions and 1 deletions

View File

@ -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/>