At Fri, 16 Aug 2002 08:50:41 +0100, Andy Wardley wrote: > > On Fri, Aug 16, 2002 at 04:37:50PM +0900, Tatsuhiko Miyagawa wrote: > > This patches removes "our" in Template::Constants. > > D'Oh! Silly me. Patch is applied, thank you.
Here's another "our" in t/html.t ;) -- Tatsuhiko Miyagawa <[EMAIL PROTECTED]> Index: t/html.t =================================================================== RCS file: /template-toolkit/Template2/t/html.t,v retrieving revision 2.9 diff -u -r2.9 html.t --- t/html.t 2002/08/12 11:13:07 2.9 +++ t/html.t 2002/08/16 07:59:11 @@ -22,7 +22,8 @@ use Template::Plugin::HTML; $^W = 1; -our $DEBUG = grep(/-d/, @ARGV); +use vars qw($DEBUG); +$DEBUG = grep(/-d/, @ARGV); $Template::Test::DEBUG = $DEBUG; $Template::Test::PRESERVE = $DEBUG; _______________________________________________ templates mailing list [EMAIL PROTECTED] http://www.template-toolkit.org/mailman/listinfo/templates
