Evan Kaufman wrote:
>
> print $tt_out,"\n\n",$request->filename,"\n";
Devel::Peek can sometimes shed light onto strange variable contents:
use Devel::Peek;
Dump($tt_out);
It sends its output directly to stderr, though, so you'll have to watch
your Apache error_log to see it.
Philip