On Thu, Feb 07, 2002 at 08:03:15AM -0800, eCap wrote: > [% INCLUDE files.thispage %]
Simply prefix it with a '$' to tell TT it's a variable, not a literal string: [% INCLUDE $files.thispage %] You can also double quote template names to get the same effect: [% INCLUDE "my/files/$files.thispages" %] HTH A
