有趣的 您尚未登录/注册
社区>技术交流
xiuno让30天前的帖子回复不置前。 (阅13)
2025-11-23 18:12:33
\model\post.func.php
找:
// todo: 如果是老帖,不更新 lastpid
将下面的:
thread__update($tid, array('posts+'=>1, 'lastpid'=>$pid, 'lastuid'=>$uid, 'last_date'=>$time));

改成:
		// 增加30天后的主题 不更新 lastpid
		$create = db_find_one('thread', array('tid'=>$tid));
		$create_date = $create['create_date'] + (30 * 24 * 60 * 60);
		if($create_date > $time){
		thread__update($tid, array('posts+'=>1, 'lastpid'=>$pid, 'lastuid'=>$uid, 'last_date'=>$time));
		}else{
		thread__update($tid, array('posts+'=>1, 'lastuid'=>$uid, 'last_date'=>$time));	
		}
		// 增加30天后的主题 不更新 lastpid

如果想改成其他日期,可以将30 * 24 * 60 * 60 的30改成你想要的天数。


[楼主]阿罪(1123)
[操作]管理 举报 收藏 打赏
登录后才能回复!点击此登录
回帖列表
返回贴子列表
社区>技术交流
×

打赏楼主

top 回顶部
<极速版|触屏版>