Verfasst: 02.06.2005 09:16
Ja Fehlermeldung ist verschwunden, dass einzige was mich noch stört ist das die "Überschrifttabelle" wo "neuste Bilder im Album" steht nicht über die ganze Reihe geht ..
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="forumline">
<tr>
<th class="thTop" height="25" nowrap="nowrap">{L_NEWEST_PICS}</th>
</tr>
<tr>
<td>
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<!-- BEGIN no_pics -->
<tr>
<td class="row1" align="center" height="50"><span class="gen">{L_NO_PICS}</span></td>
</tr>
<!-- END no_pics -->
<!-- BEGIN recent_pics -->
<!-- BEGIN recent_detail -->
<tr>
<td class="row1" width="{S_COL_WIDTH}" align="center"><a href="{recent_pics.recent_detail.U_PIC}"{TARGET_BLANK}><img src="{recent_pics.recent_detail.THUMBNAIL}" border="0" alt="{recent_pics.recent_detail.DESC}" title="{recent_pics.recent_detail.DESC}" vspace="10" /></a></td>
</tr>
<tr>
<td class="row2" align="center">
<span class="gensmall">
{L_PIC_TITLE}: {recent_pics.recent_detail.TITLE}<br />
{L_POSTER}: {recent_pics.recent_detail.POSTER}<br />
{L_POSTED}: {recent_pics.recent_detail.TIME}<br />
{L_DIMENSION}: {recent_pics.recent_detail.DIMENSION}<br />
{L_SIZE}: {recent_pics.recent_detail.SIZE}<br />
{L_VIEW}: {recent_pics.recent_detail.VIEW}<br />
{recent_pics.recent_detail.RATING}{recent_pics.recent_detail.COMMENTS}<br />
</span>
</td>
</tr>
<!-- END recent_detail -->
<!-- END recent_pics -->
</table>
</td>
</tr>
<tr>
<td class="row3" height="25" align="center"><span class="gensmall">[ <a href="{U_ALBUM}">{L_ALBUM}</a> ]</span></td>
</tr>
</table>
<br />
Code: Alles auswählen
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="forumline">
<tr>
<th class="thTop" height="25" nowrap="nowrap">{L_NEWEST_PICS}</th>
</tr>
<tr>
<td>
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<!-- BEGIN no_pics -->
<tr>
<td class="row1" align="center" height="50"><span class="gen">{L_NO_PICS}</span></td>
</tr>
<!-- END no_pics -->
<tr>
<!-- BEGIN recent_pics -->
<!-- BEGIN recent_detail -->
<td class="row1" width="{S_COL_WIDTH}" align="center"><a href="{recent_pics.recent_detail.U_PIC}"{TARGET_BLANK}><img src="{recent_pics.recent_detail.THUMBNAIL}" border="0" alt="{recent_pics.recent_detail.DESC}" title="{recent_pics.recent_detail.DESC}" vspace="10" /></a></td>
<!-- END recent_detail -->
<!-- END recent_pics -->
</tr>
<tr>
<!-- BEGIN recent_pics -->
<!-- BEGIN recent_detail -->
<td class="row2" align="center">
<span class="gensmall">
{L_PIC_TITLE}: {recent_pics.recent_detail.TITLE}<br />
{L_POSTER}: {recent_pics.recent_detail.POSTER}<br />
{L_POSTED}: {recent_pics.recent_detail.TIME}<br />
{L_DIMENSION}: {recent_pics.recent_detail.DIMENSION}<br />
{L_SIZE}: {recent_pics.recent_detail.SIZE}<br />
{L_VIEW}: {recent_pics.recent_detail.VIEW}<br />
{recent_pics.recent_detail.RATING}{recent_pics.recent_detail.COMMENTS}<br />
</span>
<!-- END recent_detail -->
<!-- END recent_pics -->
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="row3" height="25" align="center"><span class="gensmall">[ <a href="{U_ALBUM}">{L_ALBUM}</a> ]</span></td>
</tr>
</table>
<br />
Code: Alles auswählen
'L_ALBUM' => $lang['Album'],
'U_ALBUM' => append_sid('album.'.$phpEx),
Code: Alles auswählen
$lang['Album'] = 'Album';
Ja der Code in der lang_main fehlt, im page_header ist alles O.K.Markus67 hat geschrieben:
und dann noch in der lang_main.php diesen Eintrag?Code: Alles auswählen
$lang['Album'] = 'Album';