推荐应用
discuzx2.5抢楼帖回复后显示已中奖刷新后楼层变化的解决方案
发布于 2013-01-28
解决discuz!X2.5抢楼帖回复后显示已中奖刷新后楼层变化的问题
通过FTP工具连接php虚拟主机文件目录:…/source/module/forum/forum_viewthread.php(修改前请备份)
文本编辑器(EditPlus)打开forum_viewthread.php
查找:大约在890行左右
通过FTP工具连接php虚拟主机文件目录:…/source/module/forum/forum_viewthread.php(修改前请备份)
文本编辑器(EditPlus)打开forum_viewthread.php
查找:大约在890行左右
if($rushreply) {
$preg_str =rushreply_rule($rewardfloorarr);
preg_match_all($preg_str,”,,”.$post['number'].”,,”, $arr);
if($post['number'] ==str_replace(“,”, ”, $arr['0']['0']))
{
$post['rewardfloor'] = 1;
}
}
替换为: if($rushreply) {
$post['number'] = $post['position'];
$preg_str =rushreply_rule($rewardfloorarr);
preg_match_all($preg_str,",,".$post['number'].",,", $arr);
if($post['number'] ==str_replace(",", '', $arr['0']['0'])) {
$post['rewardfloor'] = 1;
}
}
温馨提示:此解决方法只针对未升级最新版(0901)有效,网站活动只是一种吸引人气的方法。