Andrew Beattie wrote:
> I pass the stuff to TT with
> 
> $$vars{'columns'} = $columns;
> $$vars{'body'} = \&get_body;

Can you not call get_body() to populate the hash before calling TT?

$vars = {
   columns => $columns,
   body    => get_body(),
};


A


_______________________________________________
templates mailing list
[EMAIL PROTECTED]
http://lists.ourshack.com/mailman/listinfo/templates

Reply via email to