diff options
author | Thomas Andres <thomas@andres.in> | 2017-03-12 18:03:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-12 18:03:09 +0100 |
commit | 30cdeaa689eae4f6ab10196a3148a2137e7361c5 (patch) | |
tree | 1dd96846cc425fcafe239ef81f37fa7a1d673a3a /app/Validator | |
parent | 8f6b3295e89af4c877f5522b9941fafd51b795c7 (diff) |
Changed TaskValidator to accept all date/time formats for date_started
The TaskValidator did only accept the date/time format defined in the application configuration.
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 f9441c8b..68234411 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'), array($this->dateParser->getUserDateTimeFormat())), + new Validators\Date('date_started', t('Invalid date'), $this->dateParser->getDateTimeFormats(true)), new Validators\Numeric('time_spent', t('This value must be numeric')), new Validators\Numeric('time_estimated', t('This value must be numeric')), ); |