|
-- 作者: POP
-- 發表時間: 2009/08/16 08:59pm
適用版本: LeoBBS X build060830 敘述: 原LeoBBS標籤使用〔url=連結網址〕〔img〕圖片網址〔/img〕〔/url〕時,超連結內容仍為"圖片網址"而非"連結網址" 修改 code.cgi 找到 $$post =~ s/\[url.+?\[img\]\s*(http|https|ftp):\/\/(\S+?)\s*\[\/img\]\[\/url\]/<a href=$1:\/\/$2 target=_blank title=開新視窗瀏覽><img src=$1:\/\/$2 border=0 onload=\"javascript:if(this.width>document.body.clientWidth-333)this.width=document.body.clientWidth-333\"><\/a>/isg; 改成 $$post =~ s/\[url\=\s*(http|https|ftp):\/\/(\S+?)\s*\]\[img\]\s*(http|https|ftp):\/\/(\S+?)\s*\[\/img\]\[\/url\]/<a href=$1:\/\/$2 target=_blank title=開新視窗瀏覽><img src=$3:\/\/$4 border=0 onload=\"javascript:if(this.width>document.body.clientWidth-333)this.width=document.body.clientWidth-333\"><\/a>/isg;
|