Skip Menu |

This queue is for tickets about the HTML-Template-JIT CPAN distribution.

Report information
The Basics
Id: 16800
Status: new
Priority: 0/
Queue: HTML-Template-JIT

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.05
Fixed in: (no value)



Subject: $_ is not localized
This is perl, v5.8.6 built for i686-linux Linux lux 2.6.4-52-default #1 Wed Apr 7 02:08:30 UTC 2004 i686 athlon i386 GNU/Linux after creating a template, $_ is set to a new value: $ perl -wle' use HTML::Template::JIT; my $t = HTML::Template::JIT->new( filename => "examples/test.htc", jit_path=>"/tmp/jit", ); $t->param({foo => 23}); print $_; $t->output; print $_; ' version : 5.8.6 version : 5.8.6
Subject: $_ is not localized ==> is actually a bug of Inline.pm
[TINITA - Thu Dec 29 21:03:32 2005]: Show quoted text
> after creating a template, $_ is set to a new value:
[...] this seems to be a bug of Inline.pm - sorry.