Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[求助] 首页四格的本周热门不显示帖子,求救!

[复制链接]
taosiliang 发表于 2013-11-13 00:51:58 | 显示全部楼层 |阅读模式
用了好几种四格,但是有一项本周热帖都是不显示,无论我是换成精华帖还是热门贴都不显示  为什么?
大神,版主,管理帮我看下。青岛玩,玩青岛!-www.qdwanqd.com
mengdejun 发表于 2014-2-21 11:48:10 | 显示全部楼层
这是一个bug,本周热门判断要求回复数不能为0,当然我们可以手工的修改
在/source/plugin/thread_list/thread_list.class.php中找到
  1. $sql = "SELECT t.*, f.name FROM ".DB::table('forum_thread')." t, ".DB::table('forum_forum')." f WHERE f.fid=t.fid $notshow $onlyshow $DigShow AND t.displayorder not IN(-1,-2) AND t.closed NOT LIKE 'moved|%' AND t.replies!=0 AND t.dateline>$ctime ORDER BY t.$hotdig DESC LIMIT 0, $thread_num";
复制代码

将其修改为
  1. $sql = "SELECT t.*, f.name FROM ".DB::table('forum_thread')." t, ".DB::table('forum_forum')." f WHERE f.fid=t.fid $notshow $onlyshow $DigShow AND t.displayorder not IN(-1,-2) AND t.closed NOT LIKE 'moved|%' AND t.replies>=0 AND t.dateline>$ctime ORDER BY t.$hotdig DESC LIMIT 0, $thread_num";
复制代码
即可,修改前记得要备份哟。
http://www.wyao.in

回复

使用道具 举报

Dz新手帮助站 发表于 2014-2-21 13:54:08 | 显示全部楼层
楼上正解      
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-16 12:49 , Processed in 0.026471 second(s), 6 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表