From 29e88c91f4bb40adadd7c5d6c8b2375e89090a61 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Fri, 11 Sep 2015 09:40:43 +0800 Subject: [PATCH] * fix bug #729. --- module/task/control.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/task/control.php b/module/task/control.php index a9ef3a1e4d..051b6e9985 100644 --- a/module/task/control.php +++ b/module/task/control.php @@ -58,7 +58,7 @@ class task extends control $project = $this->project->getById($projectID); $taskLink = $this->createLink('project', 'browse', "projectID=$projectID&tab=task"); $storyLink = $this->session->storyList ? $this->session->storyList : $this->createLink('project', 'story', "projectID=$projectID"); - $this->view->users = $this->loadModel('user')->getPairs('nodeleted|noletter'); + $this->view->users = $this->loadModel('user')->getPairs('nodeleted'); /* Set menu. */ $this->project->setMenu($this->project->getPairs(), $project->id); @@ -277,7 +277,7 @@ class task extends control $this->view->position[] = $this->lang->task->common; $this->view->position[] = $this->lang->task->edit; $this->view->stories = $this->story->getProjectStoryPairs($this->view->project->id); - $this->view->users = $this->loadModel('user')->getPairs('nodeleted|noletter', "{$this->view->task->openedBy},{$this->view->task->canceledBy},{$this->view->task->closedBy}"); + $this->view->users = $this->loadModel('user')->getPairs('nodeleted', "{$this->view->task->openedBy},{$this->view->task->canceledBy},{$this->view->task->closedBy}"); $this->view->modules = $this->tree->getTaskOptionMenu($this->view->task->project); $this->display(); }