[Templates] Two issues - Processing problem and caching problem (bug?)

Garrett, Philip (MAN-Corporate) Philip.Garrett@manheim.com
Wed, 12 Jul 2006 17:30:56 -0400


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