anfangsdatum eines threads neben autor
Verfasst: 15.09.2002 13:26
Ich möchte das in der Spalte Autor auch das anfangsdatum eines threads steht .... wer kann helfen? 

phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
{topicrow.TOPIC_AUTHOR}
Code: Alles auswählen
<br />{topicrow.FIRST_POST_TIME}
Code: Alles auswählen
<td class="row3" align="center" valign="middle"><span class="name">{topicrow.TOPIC_AUTHOR}</span><br />{topicrow.FIRST_POST_TIME}</td>
Code: Alles auswählen
<td class="row3" align="center" valign="middle"><span class="name">{topicrow.TOPIC_AUTHOR}<br />{topicrow.FIRST_POST_TIME}</span></td>
Code: Alles auswählen
$first_post_time = create_date($board_config['default_dateformat'], $topic_rowset[$i]['topic_time'], $board_config['board_timezone']);
Code: Alles auswählen
$first_post_time = create_date("d M Y", $topic_rowset[$i]['topic_time'], $board_config['board_timezone']);