Re: Code issue with perl5.10

2009-11-25 Thread Steve Bertrand
Paul Johnson wrote: > On Wed, Nov 25, 2009 at 02:16:51PM -0500, Steve Bertrand wrote: > >> Hi all, >> >> I just upgraded from perl 5.8 to perl 5.10.1. Everything went well, >> except for a single module that I need. >> >> The offending code is this: >> >> ${$self->{__pb_template_list}}[...@{$self-

Re: Code issue with perl5.10

2009-11-25 Thread Paul Johnson
On Wed, Nov 25, 2009 at 02:16:51PM -0500, Steve Bertrand wrote: > Hi all, > > I just upgraded from perl 5.8 to perl 5.10.1. Everything went well, > except for a single module that I need. > > The offending code is this: > > ${$self->{__pb_template_list}}[...@{$self->{__PB__TEMPLATE_LIST}}}]->pa

Re: Code issue with perl5.10

2009-11-25 Thread Philip Potter
2009/11/25 Steve Bertrand : > Steve Bertrand wrote: >> Hi all, >> >> I just upgraded from perl 5.8 to perl 5.10.1. Everything went well, >> except for a single module that I need. >> >> The offending code is this: >> >> ${$self->{__pb_template_list}}[...@{$self->{__PB__TEMPLATE_LIST}}}]->param( >>

Re: Code issue with perl5.10

2009-11-25 Thread Dermot
2009/11/25 Steve Bertrand : >> >> ${$self->{__pb_template_list}}[...@{$self->{__PB__TEMPLATE_LIST}}}]->param( >> $param, $value ); >> >> As I understand it, $# has been deprecated in 5.10. Ouch! Really. That's a shame. Can someone please >> help me understand the above line of code? What does $#

Re: Code issue with perl5.10

2009-11-25 Thread Steve Bertrand
Steve Bertrand wrote: > Hi all, > > I just upgraded from perl 5.8 to perl 5.10.1. Everything went well, > except for a single module that I need. > > The offending code is this: > > ${$self->{__pb_template_list}}[...@{$self->{__PB__TEMPLATE_LIST}}}]->param( > $param, $value ); > > As I understa

Code issue with perl5.10

2009-11-25 Thread Steve Bertrand
Hi all, I just upgraded from perl 5.8 to perl 5.10.1. Everything went well, except for a single module that I need. The offending code is this: ${$self->{__pb_template_list}}[...@{$self->{__PB__TEMPLATE_LIST}}}]->param( $param, $value ); As I understand it, $# has been deprecated in 5.10. Can s