i've read somewhere in the docs that the use of template tags was given up with the switch from version 1 to 2.
does that mean this code
<li><a$class href='{$child->url}'>{$child->title}</a></li>
as found in the head.inc with the official download is no longer valid? Or is the use of curly brackets a regular use of PHP (I'm very new to PHP unfortunately)?Wouldn't you rather write
<?php echo $child->url ?>instead of
{$child->url}
??
thanks, christoph













