извените возможно тема обсуждалась но я не нашел.
заранее благодарен.
Код: Выделить всё
Open: includes/functions_display.php
Find:
$last_post_subject = $row['forum_last_post_subject'];
Replace with:
if (substr($row['forum_last_post_subject'], 0, 4) == 'Re: ')
{
$last_post_subject = substr(censor_text($row['forum_last_post_subject']), 4);
}
else
{
$last_post_subject = censor_text($row['forum_last_post_subject']);
}
Find:
'LAST_POST_SUBJECT' => censor_text($last_post_subject),
Replace with:
'LAST_POST_SUBJECT' => $last_post_subject,
'LAST_POST_SHORTENED_SUBJECT' => (utf8_strlen($last_post_subject) > 26) ? truncate_string($last_post_subject, 25) . "\xE2\x80\xA6" : $last_post_subject,
Open: styles/prosilver/template/forumlist_body.html
Find:
<!-- IF forumrow.LAST_POST_TIME --><dfn>{L_LAST_POST}</dfn>
In line, add after:
<a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_SUBJECT}">{forumrow.LAST_POST_SHORTENED_SUBJECT}</a><br />
Open: styles/subsilver2/template/forumlist_body.html
Find:
<p class="topicdetails"><!-- IF forumrow.U_UNAPPROVED_TOPICS --><a href="{forumrow.U_UNAPPROVED_TOPICS}">{UNAPPROVED_IMG}</a> <!-- ENDIF -->{forumrow.LAST_POST_TIME}</p>
Add before:
<p class="topicdetails"><a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_SUBJECT}">{forumrow.LAST_POST_SHORTENED_SUBJECT}</a></p>