Wednesday 03 September 2003 7:35:38 am
Hi in my pagelayout.tpl i have:
<!-- First block -->
{let children=fetch('content',list,hash(parent_node_id,110))}
{section name=Child loop=$children max=5}
<a href={concat("/content/view/full/",$Child:item.node_id)|ezurl}>{$Child:item.name}</a> {/section}
<!-- Second block -->
{let children=fetch('content',list,hash(parent_node_id,122))}
{section name=Child loop=$children max=5}
<a href={concat("/content/view/full/",$Child:item.node_id)|ezurl}>{$Child:item.name}</a> {/section} Why in second block it display info in object 110 ? (the block first is the same of the second block) Thanks
|