帖子內容編輯后自動提升主題
修改文件:
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));
網上搜到的,但我需要的是主題被購買后提升主題,搜索無果,哎~