diff options
author | Thomas Andres <thomas@andres.in> | 2017-03-16 22:43:59 +0100 |
---|---|---|
committer | Thomas Andres <thomas@andres.in> | 2017-03-16 22:43:59 +0100 |
commit | ad0cee20c199f5432affca90a320583677bb1e04 (patch) | |
tree | e67dcc5afa5a6bf9da72a0c26f349d97db317f75 /app/Validator | |
parent | 30cdeaa689eae4f6ab10196a3148a2137e7361c5 (diff) |
changed date_started to the same behaviour as date_due
Diffstat (limited to 'app/Validator')
-rw-r--r-- | app/Validator/TaskValidator.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Validator/TaskValidator.php b/app/Validator/TaskValidator.php index 68234411..f82e7374 100644 --- a/app/Validator/TaskValidator.php +++ b/app/Validator/TaskValidator.php @@ -43,7 +43,7 @@ class TaskValidator extends BaseValidator new Validators\MaxLength('title', t('The maximum length is %d characters', 200), 200), new Validators\MaxLength('reference', t('The maximum length is %d characters', 50), 50), new Validators\Date('date_due', t('Invalid date'), $this->dateParser->getParserFormats()), - new Validators\Date('date_started', t('Invalid date'), $this->dateParser->getDateTimeFormats(true)), + new Validators\Date('date_started', t('Invalid date'), $this->dateParser->getParserFormats()), new Validators\Numeric('time_spent', t('This value must be numeric')), new Validators\Numeric('time_estimated', t('This value must be numeric')), ); |