Actually this is strange, as the code looks like this:

my $template = Template->new();

eval("use Template;");
die "Unable to load Template module: $@\n" if $@;

But it should actually be like this:

eval("use Template;");
die "Unable to load Template module: $@\n" if $@;

my $template = Template->new();

Can you try changing it to see if it makes any difference?  For some
mysterious reason, this was never a problem in the past with earlier
perls.

Cheers,
David

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Codestriker-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/codestriker-user

Reply via email to