马上注册,一起探讨正确快速的建站方法
您需要 登录 才可以下载或查看,没有帐号?快速注册
x
如果有遇到标题所示问题,可以按照以下3步来解决-1楼已中奖的问题。
1、打开文件:source/language/forum/lang_template.php
找到代码:- 'thread_rushreply_rewardnum' => '个楼层已中奖',
复制代码 在它下面添加一行如下:- 'thread_rushreply_noreward' => '暂时还没有楼层中奖',
复制代码 2、打开文件:source/module/forum/forum_viewthread.php
找到代码:- $_G['forum_thread']['replies'] = $countrushpost = count($rushids) - 1;
复制代码 将代码替换为:- $_G['forum_thread']['replies'] = $countrushpost = max(0, count($rushids) - 1);
复制代码 3、打开文件:template/default/forum/viewthread.htm
找到代码:- <!--{if $countrushpost}-->[<strong>$countrushpost</strong>]{lang thread_rushreply_rewardnum} <!--{/if}-->
复制代码 将其替换为:- <!--{if $countrushpost}-->[<strong>$countrushpost</strong>]{lang thread_rushreply_rewardnum}<!--{else}--> {lang thread_rushreply_noreward} <!--{/if}-->
复制代码 然后上传覆盖更新缓存即可解决,如果有问题可以在站长互助版块发帖提问。
推荐阅读:
X2.5 0701补丁设置阅读权限以后无法取消的解决方法
http://bbs.zb7.com/thread-4708-1-1.html
升级X2.5 0701版本后图片附件不显示的解决方案
http://bbs.zb7.com/thread-4647-1-1.html
discuz! X2.5 0701 后台开启“启用登录密码加密”后 前台登录页面报错
http://bbs.zb7.com/thread-5907-1-1.html
解决 Discuz! X2.5 0701 勋章设置后出现500错误,页面空白问题
http://bbs.zb7.com/thread-5905-1-1.html |