* resolved a bug. when activating a bug, it should list out the editions it affected.
This commit is contained in:
@@ -526,14 +526,14 @@ class bug extends control
|
||||
$productID = $bug->product;
|
||||
$this->bug->setMenu($this->products, $productID);
|
||||
|
||||
$this->view->header->title = $this->products[$productID] . $this->lang->colon . $this->lang->bug->activate;
|
||||
$this->view->header->title = $this->products[$productID] . $this->lang->colon . $this->lang->bug->activate;
|
||||
$this->view->position[] = html::a($this->createLink('bug', 'browse', "productID=$productID"), $this->products[$productID]);
|
||||
$this->view->position[] = $this->lang->bug->activate;
|
||||
|
||||
$this->view->bug = $bug;
|
||||
$this->view->users = $this->user->getPairs('nodeleted');
|
||||
$this->view->builds = $this->loadModel('build')->getProductBuildPairs($productID);
|
||||
$this->view->actions = $this->action->getList('bug', $bugID);
|
||||
$this->view->bug = $bug;
|
||||
$this->view->users = $this->user->getPairs('nodeleted');
|
||||
$this->view->openedBuilds = $this->loadModel('build')->getProductBuildPairs($productID, 'noempty');
|
||||
$this->view->actions = $this->action->getList('bug', $bugID);
|
||||
|
||||
$this->display();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user