diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-09-18 22:08:16 +0200 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-09-18 22:08:16 +0200 |
commit | 31d3f8bb5783f5311bb3b7a86c3a6f5beb594580 (patch) | |
tree | 67beb8093c4fca28f8bea6ab72668a4ea34228cc /app/Event | |
parent | 4b61aad21847bc7b5d5110a80ed9ba35cbed0709 (diff) |
Fix bug: update of the last_modified field for projects
Diffstat (limited to 'app/Event')
-rw-r--r-- | app/Event/ProjectModificationDate.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/Event/ProjectModificationDate.php b/app/Event/ProjectModificationDate.php index d0d1e846..1b0b3736 100644 --- a/app/Event/ProjectModificationDate.php +++ b/app/Event/ProjectModificationDate.php @@ -55,8 +55,7 @@ class ProjectModificationDate implements Listener public function execute(array $data) { if (isset($data['project_id'])) { - $this->project->updateModificationDate($data['project_id']); - return true; + return $this->project->updateModificationDate($data['project_id']); } return false; |