Hallo,
folgender Template Code
im Quelltext steht am Ende so
Es wird bereits nach dem ersten Durchlauf das "</tr><tr>" eingefügt was ja definitiv nicht sein darf. Die Foreach befindet sich in einer weiteren Foreach die Beiträge ausgibt, daher habe ich cycle schon extra per Name-Attribut mitgeteilt die zweite foreach zu nutzen aber das ändert nicht.
Hatte da ansonten noch nie Probleme, muss irgendwas mit der Verschachtelung zutun haben...jemand eine Idee ?
folgender Template Code
PHP-Code:
<table cellpadding="0" cellspacing="0" border="0" style="margin:10px;">
<tr>
{foreach name=piclist item=picture from=$post.pictures}
<td style="width:120px;height:110px;">
<a href="{$config.path.www}{$config.path.img}/CACHE/
{$picture.dir}/{$picture.id}-600-0.jpg" rel="lightbox[r{$content.article.id}]"
title="{$content.article.topic}">
{loadImage id=$picture.id filename=$picture.filename dir=$picture.dir
width="100" height="100" html="style=\"border:1px;border-color:#fd6d04;\""}</a>
</td>
{cycle name=piclist values=",,,,</tr><tr>"}
{/foreach}
</tr>
</table>
PHP-Code:
<table cellpadding="0" cellspacing="0" border="0" style="margin:10px;">
<tr>
<td style="width:120px;height:110px;">hier bildcode</td>
</tr><tr>
<td style="width:120px;height:110px;">hier bildcode</td>
<td style="width:120px;height:110px;">hier bildcode</td>
<td style="width:120px;height:110px;">hier bildcode</td>
<td style="width:120px;height:110px;">hier bildcode</td>
<td style="width:120px;height:110px;">hier bildcode</td>
</tr><tr>
</tr>
</table>
Hatte da ansonten noch nie Probleme, muss irgendwas mit der Verschachtelung zutun haben...jemand eine Idee ?
Kommentar