https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17385
--- Comment #319 from Marcel de Rooy <[email protected]> --- use base 'Exporter'; +use Koha::Caches; use Koha::XSLT::Base; +use XML::LibXML; +use Encode; +use vars qw(@ISA @EXPORT); + my $engine; #XSLT Handler object BEGIN { + require Exporter; + our @ISA = qw(Exporter); Looks like old school perl. Why are we doing this, since we already have Exporter as the base class? First line here.. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list -- [email protected] To unsubscribe send an email to [email protected] website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
