From 30cdeaa689eae4f6ab10196a3148a2137e7361c5 Mon Sep 17 00:00:00 2001 From: Thomas Andres Date: Sun, 12 Mar 2017 18:03:09 +0100 Subject: 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. --- app/Validator/TaskValidator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Validator/TaskValidator.php') 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')), ); -- cgit v1.2.3