> -----Original Message----- > From: Cahill, Earl [mailto:[EMAIL PROTECTED] > > Anyway, when TT parses conf/forms, I get > > file error - parse error - conf/forms line 1-2: unexpected token ("[%) > [% path_form = "[% USE FillInForm %] > > It appears that TT doesn't like to evaluate embedded tags in the > declaration. I have tried CONCAT, <<, _ and probably a few > other things with no luck.
Try making the tags in advance and using replacement variables to get around that error. [% SET st="[" _ "%"; SET et="%" _ "]"; path_form ="$st USE FillInForm $et blah blah" %] --mark _______________________________________________ templates mailing list [EMAIL PROTECTED] http://lists.template-toolkit.org/mailman/listinfo/templates
