diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-05-26 12:54:06 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-05-26 12:54:06 -0400 |
commit | 93783274a438204a31865c848913088af96f0377 (patch) | |
tree | 0624ee61a42d20f55a765c4e1ef4cfa080aa0a83 /app/Model | |
parent | 2cb6b77ac87c52e9655a1333d39d0263b4880ed5 (diff) |
Improve automatic actions (move task to another position same columns)
Diffstat (limited to 'app/Model')
-rw-r--r-- | app/Model/Task.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Model/Task.php b/app/Model/Task.php index 04500272..70f1404c 100644 --- a/app/Model/Task.php +++ b/app/Model/Task.php @@ -456,6 +456,8 @@ class Task extends Base */ public function move($task_id, $column_id, $position) { + $this->event->clearTriggeredEvents(); + return $this->update(array( 'id' => $task_id, 'column_id' => $column_id, |