Monday 08 May 2006 3:55:29 am
I can't get array operators append, insert, merge to work, these examples generates a timeout:
{def $testArray=array('test1')}
{def $testArray=$testArray|append('test2')} {$testArray|attribute(show)}
{def $testArray=array(1,2,3)}
{$testArray|insert(4,4)} {$testArray|attribute(show)}
{def $a = hash('a', 'b')}
{def $b = hash('c', 'd')}
{def $c = $a|merge($b)} {$c|attribute(show)} I tried using let/set but it makes no difference. This site has Global variable registration set to of, could this be related?
www.vzt.no
|