> 2) Concider the following statements: > > [% dir = 'asc' %] > ... > [% dir = 'desc' IF norder > 0 %]
Conditional assignments must explicitly be declared with SET in order to work as you would expect: [% SET dir = 'desc' IF norder > 0 %] Hans _______________________________________________ templates mailing list [EMAIL PROTECTED] http://lists.template-toolkit.org/mailman/listinfo/templates
