Fix bug: update of the last_modified field for projects

This commit is contained in:
Frédéric Guillot
2014-09-18 22:08:16 +02:00
parent 4b61aad218
commit 31d3f8bb57
3 changed files with 52 additions and 5 deletions

View File

@@ -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;