summaryrefslogtreecommitdiff
path: root/app/Action/TaskUpdateStartDate.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Action/TaskUpdateStartDate.php')
-rw-r--r--app/Action/TaskUpdateStartDate.php13
1 files changed, 12 insertions, 1 deletions
diff --git a/app/Action/TaskUpdateStartDate.php b/app/Action/TaskUpdateStartDate.php
index 4cd548af..e5cea01b 100644
--- a/app/Action/TaskUpdateStartDate.php
+++ b/app/Action/TaskUpdateStartDate.php
@@ -13,6 +13,17 @@ use Kanboard\Model\Task;
class TaskUpdateStartDate extends Base
{
/**
+ * Get automatic action description
+ *
+ * @access public
+ * @return string
+ */
+ public function getDescription()
+ {
+ return t('Automatically update the start date');
+ }
+
+ /**
* Get the list of compatible events
*
* @access public
@@ -66,7 +77,7 @@ class TaskUpdateStartDate extends Base
'date_started' => time(),
);
- return $this->taskModification->update($values);
+ return $this->taskModification->update($values, false);
}
/**