|
打开include/post.func.php
找到- $forum['lastpost'] = explode("\t", $forum['lastpost']);
复制代码 换行添加- list($thisyear,$thismonth,$thisday) = explode(':',gmdate('Y:m:d',$timestamp + $timeoffset * 3600));//今日发贴从当天0:00点开始统计 $todaypostcheck = gmmktime(0,0,0,$thismonth,$thisday,$thisyear) - $timeoffset * 3600;//今日发贴从当天0:00点开始统计
复制代码 找到- if($forum['lastpost'][2] > $timestamp - gmdate('G', $timestamp + $_DCACHE['settings']['timeoffset'] * 3600) * 3600 - gmdate('i', $timestamp + $_DCACHE['settings']['timeoffset'] * 3600) * 60 - gmdate('s', $timestamp + $_DCACHE['settings']['timeoffset'] * 3600) * 1) {
复制代码 修改成- //if($forum['lastpost'][2] > $timestamp - gmdate('G', $timestamp + $_DCACHE['settings']['timeoffset'] * 3600) * 3600 - gmdate('i', $timestamp + $_DCACHE['settings']['timeoffset'] * 3600) * 60 - gmdate('s', $timestamp + $_DCACHE['settings']['timeoffset'] * 3600) * 1) { if($forum['lastpost'][2] > $todaypostcheck) {//今日发贴从当天0:00点开始统计
复制代码
今日发贴补丁的最新更新请看http://discuz.dismall.com/viewthread.php?tid=225394
[ 本帖最后由 muhan 于 2006-1-19 18:43 编辑 ] |
|