* Finish task #63696,63695,63687.

This commit is contained in:
tianshujie
2022-08-10 09:02:49 +08:00
parent 038b43e8f5
commit 1838710b42
22 changed files with 315 additions and 164 deletions
+24 -2
View File
@@ -232,11 +232,33 @@
</tr>
<tr>
<th><?php echo $lang->bug->os;?></th>
<td><?php echo $lang->bug->osList[$bug->os];?></td>
<td>
<?php
$os = '';
$osList = explode(',', $bug->os);
foreach($osList as $value)
{
if(empty($value)) continue;
$os .= $lang->bug->osList[$value] . ',';
}
echo trim($os, ',');
?>
</td>
</tr>
<tr>
<th><?php echo $lang->bug->browser;?></th>
<td><?php echo $lang->bug->browserList[$bug->browser];?></td>
<td>
<?php
$browser = '';
$browserList = explode(',', $bug->browser);
foreach($browserList as $value)
{
if(empty($value)) continue;
$browser .= $lang->bug->browserList[$value] . ',';
}
echo trim($browser, ',');
?>
</td>
</tr>
<tr>
<th><?php echo $lang->bug->keywords;?></th>