=========== 2006-2-17 23:01 安裝過的可跟以下加多一種 ===========
別人簽名的圖改為連接 (可顯示自己)
viewthread.php 找
- if($showsignature == 2 && $post['uid'] != $discuz_uid){
- $post['signature'] = preg_replace("/\<img src="\s*(.+?)\s*"\>/is", '', $post['signature']);
- }
复制代码
改為
- if($showsignature == 2 && $post['uid'] != $discuz_uid){
- $post['signature'] = preg_replace("/\<img src="(.+?)"\>/is", '', $post['signature']);
- }elseif($showsignature == 3 && $post['uid'] != $discuz_uid){
- $post['signature'] = preg_replace("/\<img src="(.+?)" (.+?)"\>/is", "<a href="\\1" target="_blank">\\1</a><br>", $post['signature']);
- }
复制代码
templates/default/templates.lang.php 找
- 'showusersignature' => '帖子內顯示別人簽名方式',
复制代码
之下加入
- 'showusersignature3' => '別人簽名的圖改為連接 (可顯示自己)',
复制代码
templates/default/memcp_profile.htm 找
- <td class="altbg2"><select name="showsignaturenew">
复制代码
之下加入
- <option value="3" name="showsignaturenew" $checkshowsigna[3]>{lang showusersignature3}</option>
复制代码
=========== 2006-2-17 23:01 安裝過的可跟以下加多一種 結束 ========= |