zhangjingyu
首先是会员排行页的修改。搜索“今日发帖排行榜”,奇怪的是搜索了好几遍都没有搜索到相关文件,换成“威望排行榜”也是没有结果。好奇怪!不管了,反正这个应该跟sort.php和sort.htm这两个文件有关,于是直接查看代码。
sort.htm文件里有一段:
{$type}排行榜原来是{$type}排行榜,“排行榜”是共用的,{$type}依次分别调用相关排序项,难怪没有搜索结果。看来不用修改这个文件了,原本以为需要调整各排序项相关整块代码在文件中的位置。
再查看sort.php文件,里面有一段:
} elseif ($action == 'member') {
$_SORTDB = $member = array();
$array = array('todaypost','rvrc','postnum','onlinetime','monthpost','monoltime','f_num','money', 'digests', 'currency', 'credit', 'postMostUser');
foreach ($_CREDITDB as $key => $value) {
array_push($array,$key);
}原来都在这里,$array = array('todaypost','rvrc','postnum','onlinetime','monthpost','monoltime','f_num','money', 'digests', 'currency', 'credit', 'postMostUser');。如此,修改起来就简单多了,简单调整下排序应该就可以了。
=================分隔线====================
说明:这样修改后还是不行,原因见31楼。