每页15条数据:
/source/module/forum/forum_guide.php
代码第26行的 50 改为 25,表示每页只显示15条:
$perpage = 15;
一共加载2250条数据:
/source/module/forum/forum_guide.php
代码第184行,后面加入 0,2250 这两个参数
$query = C::t('forum_thread')->fetch_all_for_guide($view, $limittid, $tids, $_G['setting']['heatthread']['guidelimit'], $dateline,0, 2250);
禁止缓存,发帖后导读最新帖刷新即时出现
/source/module/forum/forum_guide.php
代码第147行if判断中,将缓存判断改为false
if(false && $cache && (TIMESTAMP - $cache['cachetime']) < $cachetimelimit) {
有些板块的帖子在导读上无法显示?
/source/module/forum/forum_guide.php
代码第171行if判断中,!$forum['viewperm'] 就是判断浏览板块是否设置权限的
if($forum['type'] != 'group' && $forum['status'] > 0 && !$forum['viewperm'] && !$forum['havepassword']) {
|