summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/Validator/TaskValidator.php2
-rw-r--r--doc/en_US/api-task-procedures.markdown2
2 files changed, 2 insertions, 2 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')),
);
diff --git a/doc/en_US/api-task-procedures.markdown b/doc/en_US/api-task-procedures.markdown
index af24c523..a5691c12 100644
--- a/doc/en_US/api-task-procedures.markdown
+++ b/doc/en_US/api-task-procedures.markdown
@@ -23,7 +23,7 @@ API Task Procedures
- **recurrence_timeframe** (integer, optional)
- **recurrence_basedate** (integer, optional)
- **tags** ([]string, optional)
- - **date_started**: d/m/Y H:i format (string, optional)
+ - **date_started**: ISO8601 format (string, optional)
- Result on success: **task_id**
- Result on failure: **false**