不用谢我了
SQL
INSERT INTO `pre_common_credit_rule` ( `rid` ,`rulename` ,`action` ,`cycletype` ,`cycletime` ,`rewardnum` ,`norepeat` ,`extcredits1` ,`extcredits2` ,`extcredits3` ,`extcredits4` ,`extcredits5` ,`extcredits6` ,`extcredits7` ,`extcredits8` , `fids` ) VALUES ( NULL , '主题被回复', 'getreply', '4', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '');
打开source\include\post\post_newreply.php
找到:
!empty($_G['uid']) && updatepostcredits('+', $_G['uid'], 'reply', $_G['fid']);
在下面加:
if($thread['authorid'] != $_G['uid'])updatecreditbyaction('getreply', $thread['authorid']);
找到:
if($_G['forum']['status'] == 3) {
在上面加:
if($thread['authorid'] != $_G['uid'])updatecreditbyaction('getreply', $thread['authorid']);
然后到系统设置——全局——积分设置——积分策略,找到“帖子被回复”这项,按照你的站点需求配置参数即可使用 |