Forum OpenACS Q&A: Re: How to upvar an array in a recursive procedure

Collapse
Posted by David Walker on
But in case it is what you want to do

In this line you are passing an element of the array
"get_tree $new_children $element $p($level) $level"
when you want to pass the whole array.
"get_tree $new_children $element $p $level"

I think.