打开:在source\module\forum下,forum_viewthread.php打开,找到 c::t('forum_thread')->increase($_g['tid'], array('views' => $row['addviews']+1), true);
discuz_process::unlock('update_thread_view');
}
}
} else {
c::t('forum_threadaddviews')->insert(array('tid' => $_g['tid'], 'addviews' => 1), false, true);
}
} else {
c::t('forum_thread')->increase($_g['tid'], array('views' =>1), true, $tableid);
复制代码
把上面代码里面的 3处 1 改成n(你想要的数值)
例如:c::t('forum_thread')->increase($_g['tid'], array('views' => $row['addviews']+3), true);
discuz_process::unlock('update_thread_view');
}
}
} else {
c::t('forum_threadaddviews')->insert(array('tid' => $_g['tid'], 'addviews' => 3), false, true);
}
} else {
c::t('forum_thread')->increase($_g['tid'], array('views' =>3), true, $tableid);
复制代码