Du hast Probleme beim Einbau oder bei der Benutzung eines Mods? In diesem Forum bist du richtig.
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.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
TheRealKoston
Mitglied
Beiträge: 225 Registriert: 10.01.2004 20:26
Wohnort: Freystadt
Beitrag
von TheRealKoston » 02.06.2004 12:02
so wie muss ich die lines modifizieren:
Code: Alles auswählen
$last_post_time = create_date($board_config['default_dateformat'], $forum_data[$j]['post_time'], $board_config['board_timezone']);
$last_post = '<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '" title="' . $topic_title2 . '">' . $topic_title . '</a><br>';
$last_post .= $last_post_time . ' <a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '"></a><br>' . $lang['by'] . ' ';
$last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $forum_data[$j]['user_id']) . '">' . $forum_data[$j]['username'] . '</a> ';
damit das
[ externes Bild ] Icon direkt hinter dem Namen und net hinter dem Datum steht?
TheRealKoston
Mitglied
Beiträge: 225 Registriert: 10.01.2004 20:26
Wohnort: Freystadt
Beitrag
von TheRealKoston » 03.06.2004 14:35
so hab des ma versucht krieg des aba net gebacken
einmal stand dann scho: #9994 dan ndas icon - hmm das zu machen dürfte doch für einen der des checkt nur eine minute dauern
rabbit
Ehemaliger Übersetzer
Beiträge: 4199 Registriert: 14.06.2003 22:09
Wohnort: Hildesheim
Kontaktdaten:
Beitrag
von rabbit » 03.06.2004 16:02
versuch' mal damit:
$last_post_time = create_date($board_config['default_dateformat'], $forum_data[$j]['post_time'], $board_config['board_timezone']);
$last_post = '<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '" title="' . $topic_title2 . '">' . $topic_title . '</a><br>';
$last_post .= $last_post_time . ' <a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"></a><br>' . $lang['by'] . ' ';
$last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $forum_data[$j]['user_id']) . '">' . $forum_data[$j]['username'] . '<img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '"></a> ';
ohne gewähr...
TheRealKoston
Mitglied
Beiträge: 225 Registriert: 10.01.2004 20:26
Wohnort: Freystadt
Beitrag
von TheRealKoston » 03.06.2004 16:32
ok funkt soweit: nur nen leerzeichen zwischen dem usernamen und der Pfeil sollte ein Link auf den letzten Beitrag sein - kansnt du des bitte auch nochmachen :> ?
soweit Danke
rabbit
Ehemaliger Übersetzer
Beiträge: 4199 Registriert: 14.06.2003 22:09
Wohnort: Hildesheim
Kontaktdaten:
Beitrag
von rabbit » 03.06.2004 22:35
wie sieht's hiemit aus?
Code: Alles auswählen
$last_post_time = create_date($board_config['default_dateformat'], $forum_data[$j]['post_time'], $board_config['board_timezone']);
$last_post = '<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '" title="' . $topic_title2 . '">' . $topic_title . '</a><br>';
$last_post .= $last_post_time . ' <a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"></a><br>' . $lang['by'] . ' ';
$last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $forum_data[$j]['user_id']) . '">' . $forum_data[$j]['username'] . '</a> '; <a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '"></a> ';
TheRealKoston
Mitglied
Beiträge: 225 Registriert: 10.01.2004 20:26
Wohnort: Freystadt
Beitrag
von TheRealKoston » 04.06.2004 09:50
da bringt er mir nen Fehler Parse error oder so
Wennst genaue Fehlerbeschreibung brauchst kann ichs ja später nochma einbauen
luxi
Mitglied
Beiträge: 7 Registriert: 03.06.2004 20:35
Beitrag
von luxi » 12.06.2004 16:52
Hmm mal ne frage dazu fuzt des auch bei 2.0.8? Oder habt ihr des noch nicht getestet
TheRealKoston
Mitglied
Beiträge: 225 Registriert: 10.01.2004 20:26
Wohnort: Freystadt
Beitrag
von TheRealKoston » 12.06.2004 17:55
also ich baus halt bei 2.0.6. ein
[weil mir kommt des hier vor, als würde keiner diesen mod supporten)