|
1#
发表于 2006-7-13 15:18
| 只看该作者
[原创]<今日帖子日期变色>加强版 FOR Discuz!4.1
作者:yeego
演示:http://www.jiacheng.sh.cn/forumdisplay.php?fid=889
注:参考sw08的“今日帖子日期變色 For 4.X”http://www.discuz.net/thread-312935-1-1.html
改进:原作只有当日主题帖才变色,加强版定义为该帖最后回复时间(无回复的以发帖时间为准)24小时之内的变色。
步骤:
1.打开forumdisplay.php- $thread['icon'] = isset($_DCACHE['icons'][$thread['iconid']]) ? '<img src="'.SMDIR.'/'.$_DCACHE['icons'][$thread['iconid']].'" align="absmiddle">
复制代码 前面加上:- $thread['cgday'] = $thread[lastpost];
复制代码 2.打开forumdisplay.htm- <span class="smalltxt">$thread[lastpost]</span>
复制代码 替换为:- <!--{if (($timestamp-$thread['cgday'])<86400)}-->
- <span class="smalltxt"><font color=red>$thread[lastpost]</font></span>
- <!--{else}-->
- <span class="smalltxt">$thread[lastpost]</span><!--{/if}-->
复制代码 |
|