> [% USE SubMenu %] > > [% WRAPPER page; > PROCESS $template FILTER submenu; > END > %] > > And "page" does [% PROCESS menu %]. But that shouldn't be localizing, right?
You're right.
It just occurred to me that your $stash->set is not correct.
> $stash->set( ['sections', $count ], { href => $jump, text => $tag } );
This should be:
$stash->set( ['sections', 0, $count, 0 ], { href => $jump, text => $tag } );
or more simply,
$stash->set( "sections.$count", { href => $jump, text => $tag } );
Craig
