|
|
http://www.discuz.net/viewthread.php?tid=554663&highlight=%CF%D4%CA%BE%D7%EE%BA%F3%BB%D8%B8%B4
二.首页显示最后回复
1.打开\include\forum.func.php
找到
- $lastpost['dateline'] = gmdate("$dateformat $timeformat", $lastpost['dateline'] + $timeoffset * 3600);
复制代码
后边加上
- $lastpost['subjectsc'] = cutstr($lastpost['subject'], 18);
复制代码
2.打开templates\default\discuz.htm
查找
- <!--{if is_array($forum['lastpost'])}-->
- <td align="center" title="{lang forum_lastpost_in}: {$forum[lastpost][subject]}" nowrap>
- <span class="smalltxt"><a href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost">$forum[lastpost][dateline]</a></span><br>{lang forum_lastpost_by} <!--{if $forum['lastpost']['author']}-->$forum['lastpost']['author']<!--{else}-->{lang anonymous}<!--{/if}-->
- </td>
- <!--{else}-->
复制代码
替换为:
- <!--{if is_array($forum['lastpost'])}-->
- <td align="left" title="{lang forum_lastpost_in}: {$forum[lastpost][subject]}" nowrap>
- <span class="smalltxt">标题: <a href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost">$forum['lastpost'][subjectsc]</a></span><br> <!--{if $forum['lastpost']['author']}-->作者: $forum['lastpost']['author']<!--{else}-->{lang anonymous}<!--{/if}-->
- </td>
- <!--{else}-->
复制代码
OK! |
|