Skip to content

Commit 80a0302

Browse files
committed
medal add ID
1 parent b37037e commit 80a0302

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

public/medal.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
<table border="1" cellspacing="0" cellpadding="5" width="100%">
4141
<thead>
4242
<tr>
43+
<td class="colhead">ID</td>
4344
<td class="colhead">$columnImageLargeLabel</td>
4445
<td class="colhead">$columnDescriptionLabel</td>
4546
<td class="colhead" style="width: 115px">$columnSaleBeginEndTimeLabel</td>
@@ -89,8 +90,8 @@
8990
$giftDisabled, $giftClass, $row->id, $giftBtnText, $giftDisabled, $columnGiftFeeLabel, (($row->gift_fee_factor ?? 0) * 100).'%'
9091
);
9192
$table .= sprintf(
92-
'<tr><td><img src="%s" style="max-width: 60px;max-height: 60px;" class="preview" /></td><td><h1>%s</h1>%s</td><td>%s ~<br>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td>',
93-
$row->image_large, $row->name, $row->description, $row->sale_begin_time ?? nexus_trans('nexus.no_limit'), $row->sale_end_time ?? nexus_trans('nexus.no_limit'), $row->durationText, (($row->bonus_addition_factor ?? 0) * 100).'%', number_format($row->price), $row->inventory ?? nexus_trans('label.infinite'), $buyAction, $giftAction
93+
'<tr><td>%s</td><td><img src="%s" style="max-width: 60px;max-height: 60px;" class="preview" /></td><td><h1>%s</h1>%s</td><td>%s ~<br>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td>',
94+
$row->id,$row->image_large, $row->name, $row->description, $row->sale_begin_time ?? nexus_trans('nexus.no_limit'), $row->sale_end_time ?? nexus_trans('nexus.no_limit'), $row->durationText, (($row->bonus_addition_factor ?? 0) * 100).'%', number_format($row->price), $row->inventory ?? nexus_trans('label.infinite'), $buyAction, $giftAction
9495
);
9596
}
9697
$table .= '</tbody></table>';

0 commit comments

Comments
 (0)