Evan Kaufman wrote:
   $TT->process($request->filename(), \%data, $request ) || do
   {
     $request->log_reason( $TT->error() );
     return SERVER_ERROR;
   };

Maybe try storing to a scalar ref and printing to manually? See if the output 
is correct then.

ie:
my $output;
$TT->process($request->filename(), \%data, \$output )
# output output and see what it looks like.

I don't suppose it could be an encoding issue of some sort?

-- Josh

_______________________________________________
templates mailing list
[email protected]
http://lists.template-toolkit.org/mailman/listinfo/templates

Reply via email to