文件列表:
./viewthread.php
./templates/default/viewthread.htm
安装方法:
1: 修改viewthread.php
查找:
- $customshow = $discuz_uid ? str_pad(base_convert($customshow, 10, 3), 3, '0', STR_PAD_LEFT) : '222';
复制代码
下面加上:
- if($showsign == 'change' && $discuz_uid){
- $customshow{0} = $customshow{0} == 2 ? ($showsettings{0} == 1 ? 0 : 1) : ($customshow{0} == 1 ? 0 : 1);
- $db->query("UPDATE {$tablepre}members SET customshow='".base_convert($customshow{0}.$customshow{1}.$customshow{2}, 3, 10)."' WHERE uid='$discuz_uid'");
- }//Wondful signature collapse for discuz 5.0.0 by lu5266
复制代码
2: 修改./templates/default/viewthread.htm
查找:
- <!--{if $post['signature'] && !$post['anonymous'] && $showsignatures}-->
- <tr><td valign="bottom">
- <br><br><br><img src="images/common/sigline.gif" alt="" /><br><div class="signature" $maxsigrows>$post[signature]</div>
- </td></tr>
- <!--{/if}-->
复制代码
替换为:
- <!--{if $post['signature'] && !$post['anonymous']}-->
- <tr><td valign="bottom">
- <br><br><img src="images/common/sigline.gif" {if $discuz_uid}onmouseover="this.style.cursor='hand';this.title='Click To Show/Hide';" onclick="window.location='viewthread.php?tid=$tid&page=$page&extra=$extra&showsign=change'" {/if}>
- <!--{if $showsignatures}-->
- <br><div class="signature" $maxsigrows>$post[signature]</div>
- <!--{/if}-->
- </td></tr>
- <!--{/if}-->
复制代码
完成
[ 本帖最后由 lu5266 于 2006-10-23 18:43 编辑 ] |