1. 论坛系统升级为Xenforo,欢迎大家测试!
    Dismiss Notice

会员信息列表中违规记录表格修正

Discussion in '源码讨论' started by xinli_zhao, Apr 9, 2007.

  1. xinli_zhao

    xinli_zhao Member

    Joined:
    Aug 31, 2006
    Messages:
    201
    Likes Received:
    1
    在会员信息中显示会员的违规记录时,表格的格式很难看,其实稍加修改即可:
    在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>
    即可