From 5f7282aa6a8bb9ec88204738d4ac86bb02131f02 Mon Sep 17 00:00:00 2001 From: wangchunsheng Date: Mon, 24 Dec 2012 01:01:12 +0000 Subject: [PATCH] * adjust user list order. --- module/bug/control.php | 2 +- module/testcase/control.php | 2 +- module/testtask/control.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/module/bug/control.php b/module/bug/control.php index 7ae375ff28..195689f81c 100644 --- a/module/bug/control.php +++ b/module/bug/control.php @@ -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(); } diff --git a/module/testcase/control.php b/module/testcase/control.php index 02f1f3026a..908691b059 100644 --- a/module/testcase/control.php +++ b/module/testcase/control.php @@ -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(); } diff --git a/module/testtask/control.php b/module/testtask/control.php index b4c6f0c7d3..aa6f088e18 100644 --- a/module/testtask/control.php +++ b/module/testtask/control.php @@ -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;