* finish the rewrite of other bug's pages.

This commit is contained in:
wangchunsheng
2010-01-19 09:14:44 +00:00
parent 25ad0cad8c
commit d0d05ee359
8 changed files with 54 additions and 35 deletions
+9 -5
View File
@@ -44,15 +44,18 @@ function setDuplicate(resolution)
<td class='rowhead'><?php echo $lang->bug->resolution;?></td>
<td><?php echo html::select('resolution', $lang->bug->resolutionList, '', 'class=select-3 onchange=setDuplicate(this.value)');?></td>
</tr>
<!--
<tr>
<td class='rowhead'><?php echo $lang->bug->resolvedBuild;?></td>
<td><?php echo html::input('resolvedBuild', '', 'class=text-3');?></td>
</tr>-->
<tr id='duplicateBugBox' style='display:none'>
<td class='rowhead'><?php echo $lang->bug->duplicateBug;?></td>
<td><?php echo html::input('duplicateBug', '', 'class=text-3');?></td>
</tr>
<tr>
<td class='rowhead'><?php echo $lang->bug->resolvedBuild;?></td>
<td><?php echo html::select('resolvedBuild', $builds, '', 'class=select-3');?></td>
</tr>
<tr>
<td class='rowhead'><?php echo $lang->bug->assignedTo;?></td>
<td><?php echo html::select('assignedTo', $users, $bug->openedBy, 'class=select-3');?></td>
</tr>
<tr>
<td class='rowhead'><?php echo $lang->comment;?></td>
<td><textarea name='comment' rows='6' class='area-1'></textarea></td>
@@ -65,5 +68,6 @@ function setDuplicate(resolution)
</td>
</tr>
</table>
<?php include '../../common/action.html.php';?>
</div>
<?php include '../../common/footer.html.php';?>