On Thu, 31 Oct 2002, Constant Dupuis wrote: > HTML::Template->new() : Unknown or unmatched TMPL construct at > /fake/path/for/non/file/template : line 7. at blib/lib/HTML/Template.pm > line 2231. > make: *** [test_dynamic] Error 255
This is fixed now and should not occur in 2.7. You can fix your copy of 2.6 by looking for this line in Template.pm: $which = uc($1); # which tag is it And changing it to: $which = $1; $which = uc($which); # which tag is it This problem is caused by bugs in Perl 5.8.0 that show up on Redhat 8 and other UTF-8 systems. See this thread on perl5-porters for more details: http://archive.develooper.com/perl5-porters@;perl.org/msg88580.html Hopefully either Redhat will back out the UTF-8 setting for 8.1 or Perl 5.8.1 will be less buggy when handling UTF-8 data. In the meantime you might consider downgrading to Redhat 7. Thanks, -sam ------------------------------------------------------- This sf.net email is sponsored by: See the NEW Palm Tungsten T handheld. Power & Color in a compact size! http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0001en _______________________________________________ Html-template-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/html-template-users
