Verfasst: 18.12.2007 16:42
versuch mal die:
http://files.flying-bits.org/functions_display.zip
http://files.flying-bits.org/functions_display.zip
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
<br /><strong>{forumrow.L_MODERATOR_STR}:</strong> {forumrow.MODERATORS}
<!-- ENDIF -->
Code: Alles auswählen
<!-- IF forumrow.LAST_TOPIC_TITLE_SHORT -->
<br /><b><font color="#AA0000">{L_MOD_LASTPOST}:</font> <a href="{forumrow.U_LAST_TOPIC}" title="{forumrow.LAST_TOPIC_TITLE}">{forumrow.LAST_TOPIC_TITLE_SHORT}</a></b><br />
<!-- ELSEIF forumrow.LAST_POST_SUBJECT_SHORT -->
<br /><b><font color="#AA0000">{L_MOD_LASTANSWER}:</font> <a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_SUBJECT}">{forumrow.LAST_POST_SUBJECT_SHORT}</a></b><br />
<!-- ENDIF -->
Code: Alles auswählen
'VIEW_FORUM_TOPICS' => '%d topics',
Code: Alles auswählen
'MOD_LASTPOST' => 'Last Topic',
'MOD_LASTANSWER' => 'Last Post',
Nein, kann eigentlich nicht sein, werds aber nochmal prüfen.Scotty hat geschrieben:Kann es sein das der Titel des Letzten Themas/Beitrags nicht auf dem Index angezeigt wird, wenn der aktuelle Beitrag/Thema in einem Unterforum geschrieben wurde?
Code: Alles auswählen
$last_post_subject = $row['forum_last_post_subject'];
Code: Alles auswählen
$last_post_subject = censor_text($row['forum_last_post_subject']
nicht.=> censor_text($last_post_subject),
Code: Alles auswählen
$last_post_subject = $row['forum_last_post_subject'];
Code: Alles auswählen
=> censor_text($last_post_subject),
Code: Alles auswählen
$last_post_subject = censor_text($row['forum_last_post_subject']);
Code: Alles auswählen
=> $last_post_subject,