帖子内容编辑后自动提升主题
修改文件:
source\include\post\post_editpost.php
修改方法:
搜索
$modpost->editpost($param);
在下方加入一行
DB::update('forum_thread',array('lastpost'=>TIMESTAMP),array('tid'=>$_G['tid']));
帖子被访问后自动提升主题
修改文件:
\source\module\forum\forum_viewthread.php
修改方法:
搜索
viewthread_updateviews($archiveid);
在下方加入一行
DB::update('forum_thread',array('lastpost'=>TIMESTAMP),array('tid'=>$_G['tid']));
帖子被支持/反对(顶/踩)后自动提升主题
修改文件:
\source\module\forum\forum_misc.php
修改方法:
搜索
if($_G['setting']['recommendthread']['daycount'])
在上方加入一行
DB::update('forum_thread',array('lastpost'=>TIMESTAMP),array('tid'=>$_G['tid']));
帖子被评分后自动提升主题
修改文件:
\source\module\forum\forum_misc.php
修改方法:
搜索
showmessage('thread_rate_succeed', dreferer());
在上方加入一行
DB::update('forum_thread',array('lastpost'=>TIMESTAMP),array('tid'=>$_GET['tid']));
帖子被收藏后自动提升主题
修改文件:
\source\include\spacecp\spacecp_favorite.php
修改方法:
搜索
C::t('forum_thread')->increase($id, array('favtimes'=>1));
在下方加入一行
DB::update('forum_thread',array('lastpost'=>TIMESTAMP),array('tid'=>$id));
网上搜到的,但我需要的是主题被购买后提升主题,搜索无果,哎~