diff --git a/module/bug/control.php b/module/bug/control.php index abaf265c9a..40ea882492 100644 --- a/module/bug/control.php +++ b/module/bug/control.php @@ -560,7 +560,8 @@ class bug extends control */ public function resolve($bugID) { - $this->view->users = $this->user->getPairs('noletter'); + $this->view->users = $this->user->getPairs('nodeleted'); + if(!empty($_POST)) { $this->bug->resolve($bugID); @@ -593,7 +594,8 @@ class bug extends control */ public function activate($bugID) { - $this->view->users = $this->user->getPairs('noletter'); + $this->view->users = $this->user->getPairs('nodeleted'); + if(!empty($_POST)) { $this->bug->activate($bugID);