diff options
Diffstat (limited to 'app/Template/task')
-rw-r--r-- | app/Template/task/edit.php | 2 | ||||
-rw-r--r-- | app/Template/task/new.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/task/edit.php b/app/Template/task/edit.php index 51cb2884..0df1676b 100644 --- a/app/Template/task/edit.php +++ b/app/Template/task/edit.php @@ -9,7 +9,7 @@ <div class="form-column"> <?= $this->formLabel(t('Title'), 'title') ?> - <?= $this->formText('title', $values, $errors, array('required')) ?><br/> + <?= $this->formText('title', $values, $errors, array('required', 'maxlength="200"')) ?><br/> <?= $this->formLabel(t('Description'), 'description') ?> diff --git a/app/Template/task/new.php b/app/Template/task/new.php index 6294968a..5eef9923 100644 --- a/app/Template/task/new.php +++ b/app/Template/task/new.php @@ -17,7 +17,7 @@ <div class="form-column"> <?= $this->formLabel(t('Title'), 'title') ?> - <?= $this->formText('title', $values, $errors, array('autofocus', 'required'), 'form-input-large') ?><br/> + <?= $this->formText('title', $values, $errors, array('autofocus', 'required', 'maxlength="200"'), 'form-input-large') ?><br/> <?= $this->formLabel(t('Description'), 'description') ?> |