On Thu, Jun 20, 2002 at 09:49:49PM -0700, Douglas S. Sparling wrote:
> my $stash = $context->stash();
> my $params_ref = $stash->get('params');
You can also do this:
my $uc_form_year = $stash->get('params.uc_form_year');
or this, which is slightly more efficient:
my $uc_form_year = $stash->get([ params => 0, uc_form_year => 0]);
Cheers
A
