On Wed, 26 Jun 2002, Peter Scott wrote:

> Hello.  I recently had a good reason to want to say
>
>       <TMPL_VAR NAME="x.<TMPL_VAR NAME="foo">">
>
> Regrettably, this does not work ("Syntax error in <TMPL_*> tag").

This won't be possible, as it would require a multi-pass parser.  Instead,
just do it on the Perl side:

  my $foo = "var1";
  $template->param("x.$foo" => "bar");

-sam



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to