From ad0cee20c199f5432affca90a320583677bb1e04 Mon Sep 17 00:00:00 2001 From: Thomas Andres Date: Thu, 16 Mar 2017 22:43:59 +0100 Subject: changed date_started to the same behaviour as date_due --- app/Validator/TaskValidator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Validator') 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')), ); -- cgit v1.2.3