Fix recent jobs

This commit is contained in:
Eike Foken
2011-08-31 10:16:54 +02:00
parent ad19320ad9
commit f87ebc828f
3 changed files with 4 additions and 2 deletions

View File

@@ -126,7 +126,7 @@ class Projects extends CI_Controller {
$data['project'] = $project;
$data['trials'] = $this->trial->getByProjectId($id);
$data['jobs'] = $this->job->getRecent();
$data['jobs'] = $this->job->getRecent($id);
$this->load->view('projects/detail', $data);
}