原来 雷傲的 帖子里面的 图片全都无法显示了,用了论坛提供的 在 include\discuzcode.func.php 的
在 for($i = 0; $i <= $discuzcodes['pcodecount']; $i++) { 上面添加
下面代码,反而看不到附件了,原来还可以看到附件但是 图片 附件需要下载而无法正常显示,现在添加之后看不见附件了包括图片,怎么办呢?把下面这段代码删除了回复过来,可是所有附件都无法看到了,正式郁闷
//LeoBBS X转换数据后专用 $tid是你主题的最大id
global $fid,$tid;
if ($tid < 11253) {
$lbfilepath = './attachments/LBupfile/';
$message = preg_replace(array(
"/\[UploadFile=([^\[]+?)\.(gif|jpg|png|bmp|jpeg)\]/ies",
"/\[UploadFile=(.*)\]/ies"),
array(
"bbcodeurl('\\1', '<center><img src=\"".$lbfilepath.$fid."/\\1.\\2\" border=\"0\" onload=\"if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt=\'Click here to open new window\';}\" onmouseover=\"if(this.resized) this.style.cursor=\'hand\';\" onclick=\"if(this.resized) {window.open(\'%s\');}\"></center><br>')",
"bbcodeurl('\\1', '【<a href=\"".$lbfilepath.$fid."/\\1\" target=\"_blank\" style=\"color:#0000FF;font-weight:bold\">点击下载文件</a>】')"),
$message);
}
unset($fid,$tid,$lbfilepath);
//LeoBBS X转换数据后专用 |