Edit je viens de verifier les modif c'est bon !!
De toute facon il n'y a que ca a faire ??
- Code: Tout sélectionner
Open: includes/functions_display.php
Find
Tip: This may be a partial find and not the whole line.
Code:Select All
$last_post_subject = $row['forum_last_post_subject'];
Replace With
Tip: Replace the preceding line(s) to find with the following lines.
Code:Select All
$last_post_subject = censor_text($row['forum_last_post_subject']);
Find
Tip: This may be a partial find and not the whole line.
Code:Select All
'LAST_POST_SUBJECT' => censor_text($last_post_subject),
Replace With
Tip: Replace the preceding line(s) to find with the following lines.
Code:Select All
'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,








