* adjust user list order.
This commit is contained in:
@@ -499,7 +499,7 @@ class bug extends control
|
||||
if($showSuhosinInfo) $this->view->suhosinInfo = $this->lang->suhosinInfo;
|
||||
$this->view->productID = $productID;
|
||||
$this->view->editedBugs = $editedBugs;
|
||||
$this->view->users = $this->user->getPairs('nodeleted');
|
||||
$this->view->users = $this->user->getPairs('nodeleted,devfirst');
|
||||
|
||||
$this->display();
|
||||
}
|
||||
|
||||
@@ -446,7 +446,7 @@ class testcase extends control
|
||||
$this->view->moduleOptionMenu = $this->tree->getOptionMenu($productID, $viewType = 'case', $startModuleID = 0);
|
||||
$this->view->productID = $productID;
|
||||
$this->view->editedCases = $editedCases;
|
||||
$this->view->users = $this->user->getPairs('noletter');
|
||||
$this->view->users = $this->user->getPairs('nodeleted,qafirst');
|
||||
|
||||
$this->display();
|
||||
}
|
||||
|
||||
@@ -244,7 +244,7 @@ class testtask extends control
|
||||
$this->view->productID = $productID;
|
||||
$this->view->productName = $this->products[$productID];
|
||||
$this->view->task = $task;
|
||||
$this->view->users = $this->loadModel('user')->getPairs('noclosed');
|
||||
$this->view->users = $this->loadModel('user')->getPairs('noclosed,nodeleted,qafirst');
|
||||
$this->view->moduleTree = $this->loadModel('tree')->getTreeMenu($productID, $viewType = 'case', $startModuleID = 0, array('treeModel', 'createTestTaskLink'), $extra = $taskID);
|
||||
$this->view->browseType = $browseType;
|
||||
$this->view->param = $param;
|
||||
|
||||
Reference in New Issue
Block a user