Im debugging a variable:
{foreach from=$menuItems item=row}
{$row|@print_r}
{/foreach}
this prints
Array ([parent_id] => 0) 1 Array ( [parent_id] => 5)
so far so good. I have to iterate it, but
{foreach from=$menuItems item=row}
{$row.parent_id|@print_r}
{/foreach}
01 51 01
seems too add an unnecessary number "1" after the number. Wtf?