diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-01-17 17:43:11 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-01-17 17:43:11 -0500 |
commit | bcbb3297860a8fe106094fefc04f74af4e30aed2 (patch) | |
tree | 810195e0c465db2b2f354857aa5ca12acb9e9cf6 /app | |
parent | 446a7ac6455f00efaac7c878def68fe62d0e9f19 (diff) |
Make sure that no events are fired if nothing have been modified in the task
Diffstat (limited to 'app')
-rw-r--r-- | app/Model/TaskModification.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Model/TaskModification.php b/app/Model/TaskModification.php index 5f0fd074..a0ad292c 100644 --- a/app/Model/TaskModification.php +++ b/app/Model/TaskModification.php @@ -52,7 +52,7 @@ class TaskModification extends Base if ($this->isFieldModified('owner_id', $event_data['changes'])) { $events[] = Task::EVENT_ASSIGNEE_CHANGE; - } else { + } elseif (! empty($event_data['changes'])) { $events[] = Task::EVENT_CREATE_UPDATE; $events[] = Task::EVENT_UPDATE; } |