昨晚发现一个问题,有几个帖子的 {$thread['lastpost’]} 显示的时间比当前时间大了三个月,估计是把置顶或者高亮的有效时间当成了 lastpost。
解决方法是,判断只有 lastpost 小于当前时间才显示,否则显示发帖时间 dateline 。
<!--{if $thread['dblastpost'] < $todaytime}--> {$thread['lastpost']} <!--{else}--> {$thread['dateline']} <!--{/if}-->
发表评论