加强修改
帖子数 232
找到/include/list_check.php 文件 修改
替换成
// 在主题上进行连接的部分;
if($member[level]<=$setup[grant_view]||$is_admin) {
//if($setup[use_status]&&!$data[is_secret]) $addShowComment = " onMouseOver=\"showComment('$showCommentStr',true)\" onMouseOut=\"showComment('',false)\" ";
if($setup[use_status]&&!$data[is_secret]) $addShowComment = " title=\"$showCommentStr\" ";
$subject="<a href=\"".$view_file."?$href$sort&no=$data[no]\" $addShowComment >".$subject."</a>";
}
替换成
// 在主题上进行连接的部分;
if($member[level]<=$setup[grant_view]||$is_admin) {
//if($setup[use_status]&&!$data[is_secret]) $addShowComment = " onMouseOver=\"showComment('$showCommentStr',true)\" onMouseOut=\"showComment('',false)\" ";
if($setup[use_status]&&!$data[is_secret]) $addShowComment = " title=\"$showCommentStr\" ";
// 热门主题颜色变化
if($hit>=100){
$subject="<a href=\"".$view_file."?$href$sort&no=$data[no]\" $addShowComment style=\"color:'red'\" OnMouseOver='this.style.color=\"经过时的颜色\"' OnMouseOut='this.style.color=\"red\"'>".$subject."</a>";
}
elseif($hit<100&$hit>=70){
$subject="<a href=\"".$view_file."?$href$sort&no=$data[no]\" $addShowComment style=\"color:'blue'\" OnMouseOver='this.style.color=\"经过时的颜色\"' OnMouseOut='this.style.color=\"blue\"'>".$subject."</a>";
}
else{$subject="<a href=\"".$view_file."?$href$sort&no=$data[no]\" $addShowComment >".$subject."</a>";
}




