* when confirm, set default assignedTo value.

This commit is contained in:
wangchunsheng
2013-05-09 00:57:24 +00:00
parent e5a3bdfa6b
commit be06e9f1ff
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -596,7 +596,7 @@ class bug extends control
$this->view->position[] = $this->lang->bug->confirmBug;
$this->view->bug = $bug;
$this->view->users = $this->user->getPairs('noletter');
$this->view->users = $this->user->getPairs('nodeleted');
$this->view->actions = $this->action->getList('bug', $bugID);
$this->display();
}
+1 -1
View File
@@ -23,7 +23,7 @@ js::set('page', 'confirmbug');
<caption><?php echo $bug->title;?></caption>
<tr>
<th class='rowhead'><?php echo $lang->bug->assignedTo;?></th>
<td><?php echo html::select('assignedTo', $users, '', "class='text-3'");?></td>
<td><?php echo html::select('assignedTo', $users, $bug->assignedTo, "class='text-3'");?></td>
</tr>
<tr>
<td class='rowhead'><?php echo $lang->bug->mailto;?></td>