Mon Jul 28 14:15:53 2008brooks [...] deseret.com - Ticket created
Subject:
$self not defined in Template::Plugin::XML::LibXML
Date:
Mon, 28 Jul 2008 14:15:24 -0400
To:
bug-Template-XML [...] rt.cpan.org
From:
Lyle Brooks <brooks [...] deseret.com>
In the new() method near the bottom of the method is a line
$self->throw("option '$method' not supported") if $@;
Perl complains that $self is not defined.
Perhaps it should read:
$context->throw("option '$method' not supported") if $@;
HTH