1. 论坛系统升级为Xenforo,欢迎大家测试!
    排除公告

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

本帖由 xinli_zhao2007-04-09 发布。版面名称:源码讨论

  1. xinli_zhao

    xinli_zhao Member

    注册:
    2006-08-31
    帖子:
    201
    赞:
    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>
    即可