在会员信息中显示会员的违规记录时,表格的格式很难看,其实稍加修改即可:
在Memberinfo模板中,找到:$infractionbits
将上面的:
PHP 代码:
<tr>
    <
td class="thead" colspan="2">&nbsp; &nbsp;$vbphrase[post]</td>
    <
td class="thead">$vbphrase[date]</td>
    <
td class="thead">$vbphrase[expires]</td>
    <
td class="thead">$vbphrase[points]</td>
    <
td class="thead">$vbphrase[reason]</td>
    <
td class="thead" nowrap="nowrap">$vbphrase[posted_by]</td>
    <if 
condition="$show['reverse']"><td class="thead">$vbphrase[details]</td></if>
</
tr
更改为:
PHP 代码:
<tr>
    <
td class="thead" colspan="2">&nbsp; &nbsp;$vbphrase[post]</td>
    <
td class="thead">$vbphrase[date]</td>
    <
td class="thead">$vbphrase[expires]</td>
    <
td class="thead" nowrap="nowrap">$vbphrase[points]</td>
    <
td class="thead">$vbphrase[reason]</td>
    <
td class="thead" nowrap="nowrap">$vbphrase[posted_by]</td>
    <if 
condition="$show['reverse']"><td class="thead" nowrap="nowrap">$vbphrase[details]</td></if>
</
tr
即可