04-05-2013, 12:59 AM
Deschidem includes/functions_display.php
Cautam
Repunem cu:
Cautam:
Repunem cu:
Deschidem: styles/Tema ta/template/forumlist_body.html
Cautam
Sub ea adaugam
Cautam
Code:
$last_post_subject = $row['forum_last_post_subject'];Repunem cu:
Code:
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']);
}Cautam:
Code:
'LAST_POST_SUBJECT' => censor_text($last_post_subject),Repunem cu:
Code:
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,Deschidem: styles/Tema ta/template/forumlist_body.html
Cautam
Code:
{L_LAST_POST}Sub ea adaugam
Code:
{forumrow.LAST_POST_SHORTENED_SUBJECT}