|

- 帖子
- 29
- 积分
- 29
- 威望
- 0
- 金币
- 4 个
- 体力
- 50
- 注册时间
- 2006-1-22
|
检查自动关闭的相关代码应该是下面这个,能不能修改一下不检查置顶和精华?
function checkautoclose() {
global $timestamp, $forum, $thread;
if(!$forum['ismoderator'] && $forum['autoclose']) {
$closedby = $forum['autoclose'] > 0 ? 'dateline' : 'lastpost';
$forum['autoclose'] = abs($forum['autoclose']);
if($timestamp - $thread[$closedby] > $forum['autoclose'] * 86400) {
return 'post_thread_closed_by_'.$closedby;
}
}
return FALSE;
} |
|