--- "Douglas S. Sparling" <[EMAIL PROTECTED]>
wrote:
> 
> --- "Randal L. Schwartz" <[EMAIL PROTECTED]>
> wrote:
> 
> > Why not just
> > 
> >         my $uc_form_year = $stash->get('params',
> 0,
> > 'uc_form_year');
> > 
> > since it's already in the stash?
> 
> Thanks, I thought I could get to it somehow :)...but
> it doesn't quite work for me, so I must be doing
> something wrong:
> 
> $uc_form_year = HASH(0x87caaac)

Here's what I did to get this to work:

my $stash = $context->stash();
my $params_ref = $stash->get('params');
my $uc_form_year = $$params_ref{uc_form_year};

Thanks again...

__________________________________________________
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com


Reply via email to