welcher "last post on index) ist das?
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.1, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.1, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
welcher "last post on index) ist das?
Kontrolle ist nur eine Illusion, denn niemand weiß was als nächstes passiert
-
fallen
Ok da iss:
index.php:
[suchen]
[Davor einfügen]
und jetzt irgendwo in die index_body.tpl das einfügen:
Gruss KoSSo
index.php:
[suchen]
Code: Alles auswählen
$template->assign_block_vars('catrow.forumrow', array(
'ROW_COLOR' => '#' . $row_color,
'ROW_CLASS' => $row_class,Code: Alles auswählen
$sql = "SELECT p.*, t.*, u.*
FROM " . POSTS_TABLE . " p
LEFT JOIN " . TOPICS_TABLE . " t ON t.topic_id = p.topic_id
LEFT JOIN " . USERS_TABLE . " u ON u.user_id = poster_id
ORDER BY p.post_time DESC
LIMIT 1";
if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Error getting last post', '', __LINE__, __FILE__);
}
$lastpost_row = $db->sql_fetchrow($result);
$last_post_posterid = $lastpost_row['user_id'];
$last_post_poster = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$last_post_posterid") . '">' . $lastpost_row['username'] . '</a>';
$last_post_postid = $lastpost_row['post_id'];
$last_post_date = create_date($board_config['default_dateformat'], $lastpost_row['post_time'], $board_config['board_timezone']);
$last_post_on_index = 'Letzter Beitrag <a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . "=$last_post_postid#$last_post_postid") . '">' . $lastpost_row['topic_title'] . '</a> gepostet von ' . $last_post_poster . ' am ' . $last_post_date;
$template->assign_vars(array(
'LAST_POST_ON_INDEX' => $last_post_on_index)
);Code: Alles auswählen
{LAST_POST_ON_INDEX}hey danke schon mal für die hilfe, es funktioniert.
noch ne frage, will das multi language tauglich machen.
es geht um diese zeile:
$last_post_on_index = 'Letzter Beitrag <a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . "=$last_post_postid#$last_post_postid") . '">' . $lastpost_row['topic_title'] . '</a> gepostet von ' . $last_post_poster . ' am ' . $last_post_date;
ich habe es so versucht, kommen aber nur fehler:
$last_post_on_index = $lang['Last_Post'] '<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . "=$last_post_postid#$last_post_postid") . '">' . $lastpost_row['topic_title'] . '</a> gepostet von ' . $last_post_poster . ' am ' . $last_post_date;
noch ne frage, will das multi language tauglich machen.
es geht um diese zeile:
$last_post_on_index = 'Letzter Beitrag <a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . "=$last_post_postid#$last_post_postid") . '">' . $lastpost_row['topic_title'] . '</a> gepostet von ' . $last_post_poster . ' am ' . $last_post_date;
ich habe es so versucht, kommen aber nur fehler:
$last_post_on_index = $lang['Last_Post'] '<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . "=$last_post_postid#$last_post_postid") . '">' . $lastpost_row['topic_title'] . '</a> gepostet von ' . $last_post_poster . ' am ' . $last_post_date;
Kontrolle ist nur eine Illusion, denn niemand weiß was als nächstes passiert
..da fehlte noch ein Punkt.$last_post_on_index = $lang['Last_Post'].'<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . "=$last_post_postid#$last_post_postid") . '">' . $lastpost_row['topic_title'] . '</a>'. $lang['wrote'] . $last_post_poster . $lang['at'] . $last_post_date;[/color]
$lang['wrote'] (geschrieben von) und $lang['at'] (am) müsstest du dann eventuell noch in der lang_main.php definieren.
und wie ist es hier:
$last_post_on_index = $lang['Last_Post']. ' <a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . "=$last_post_postid#$last_post_postid") . '">' . $lastpost_row['topic_title'] . '</a> $lang['From'] ' . $last_post_poster . ' am ' . $last_post_date;
Kontrolle ist nur eine Illusion, denn niemand weiß was als nächstes passiert
$lang['wrote'] (geschrieben von) und $lang['at'] (am) müsstest du dann eventuell noch in der lang_main.php definieren.$last_post_on_index = $lang['Last_Post'].'<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . "=$last_post_postid#$last_post_postid") . '">' . $lastpost_row['topic_title'] . '</a>'. $lang['wrote'] . $last_post_poster . $lang['at'] . $last_post_date;[/color]