[Templates] TT and (sticky) form handling

Tony Bowden tony-tt@kasei.com
Thu, 30 Oct 2003 08:20:50 +0000


On Wed, Oct 29, 2003 at 02:16:43PM -0800, Jeff Anderson wrote:
> I may be wrong, but last time i checked,
> CGI.end_form was a bit ornery, so i just used a
> end form tag verbatim.

The only trick to end_form, as with several other CGI.pm form methods,
is that it returns a list, not a string. So you need  

	[% CGI.end_form.join %]

Tony