diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-01-17 17:31:12 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-01-17 17:31:12 -0500 |
commit | 446a7ac6455f00efaac7c878def68fe62d0e9f19 (patch) | |
tree | d35249c3184e11b6774b845a443595d787300e35 /app/Action | |
parent | 32b2fd92d318c5318a544e5005cb15ef6abb863c (diff) |
Do not fire events when using automatic action TaskUpdateStartDate
Diffstat (limited to 'app/Action')
-rw-r--r-- | app/Action/TaskUpdateStartDate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Action/TaskUpdateStartDate.php b/app/Action/TaskUpdateStartDate.php index 011a5baf..e5cea01b 100644 --- a/app/Action/TaskUpdateStartDate.php +++ b/app/Action/TaskUpdateStartDate.php @@ -77,7 +77,7 @@ class TaskUpdateStartDate extends Base 'date_started' => time(), ); - return $this->taskModification->update($values); + return $this->taskModification->update($values, false); } /** |