>>>>> "Yann" == Yann Kerherv� <[EMAIL PROTECTED]> writes:
Yann> sub new {
Yann> my $proto = shift;
Yann> my $context = shift;
Yann> return $proto::SUPER->new(@_);
Yann> }
That's definitely not doing what you think it's doing, and very likely
not the "working code" you're running.
So says the guy who just wrote an entire book on that subject... :)
Maybe you meant
return $proto->SUPER::new(@_);
?
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<[EMAIL PROTECTED]> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!
_______________________________________________
templates mailing list
[EMAIL PROTECTED]
http://lists.template-toolkit.org/mailman/listinfo/templates