Harry Jackson wrote: > 124 $self->template()->process( $lib, $self->page_vars()) > 125 or die $self->template()->error(), " Shit\n";
What do your template() and page_vars() methods look like? And what happens if you do this: my $tt = $self->template(); print "got template: $tt\n"; my $vars = $self->page_vars(); print "got vars: $vars\n"; $tt->process($lib, $vars) or die ... It's just a hunch, but I was wondering if something in those two methods is causing the object to be cloned before TT is even invoked. A _______________________________________________ templates mailing list [EMAIL PROTECTED] http://lists.template-toolkit.org/mailman/listinfo/templates
