Fix RSS Feeds

feed() still calls getAll() which was renamed to getProject() in 286b193566
This commit is contained in:
moraxy
2014-10-18 15:56:44 +02:00
parent 378428cf2b
commit 541416a223

View File

@@ -364,7 +364,7 @@ class Project extends Base
} }
$this->response->xml($this->template->load('project_feed', array( $this->response->xml($this->template->load('project_feed', array(
'events' => $this->projectActivity->getAll($project['id']), 'events' => $this->projectActivity->getProject($project['id']),
'project' => $project, 'project' => $project,
))); )));
} }