* Finish task#860.

This commit is contained in:
chencongzhi520@gmail.com
2012-06-15 02:14:39 +00:00
parent 15b1ef2f5d
commit 2bfe07e3a0
11 changed files with 268 additions and 157 deletions

View File

@@ -41,7 +41,7 @@ class build extends control
/* Get stories and bugs. */
$orderBy = 'status_asc, stage_asc, id_desc';
$stories = $this->story->getProjectStories($projectID, $orderBy);
$bugs = $this->project->getResolvedBugs($projectID);
$bugs = $this->bug->getProjectBugs($projectID);
/* Assign. */
$this->view->header->title = $this->lang->build->create;
@@ -86,7 +86,7 @@ class build extends control
/* Get stories and bugs. */
$orderBy = 'status_asc, stage_asc, id_desc';
$stories = $this->story->getProjectStories($build->project, $orderBy);
$bugs = $this->project->getResolvedBugs($build->project);
$bugs = $this->bug->getProjectBugs($build->project);
/* Assign. */
$this->view->header->title = $this->lang->build->edit;