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

Perrin Harkins perrin@elem.com
Wed, 12 Jul 2006 13:28:36 -0400


On Wed, 2006-07-12 at 10:12 -0500, Evan Kaufman wrote:
>       # print content-type and process template
>       $request->content_type('text/html');
>       $TT->process($request->filename(), { 'uri' => $request->uri },
> $request ) || do
>       {
>         $request->log_reason( $TT->error() );
>         return SERVER_ERROR;
>       };

It doesn't look like you're sending a header.  Make sure you imported
the OK constant correctly as well.

- Perrin