> Argument "" isn't numeric in numeric lt (<) at 
> /home/savio/netstore/templates/src/page.html line 57.
> 
> launched by this line:
> 
> [% counter = 0 %]
> [% WHILE (counter < info.size) %]

info isn't defined, so info.size is also undefined (but is converted to
the empty string), so you're doing:
   WHILE (0 < '')


clint


_______________________________________________
templates mailing list
[email protected]
http://mail.template-toolkit.org/mailman/listinfo/templates

Reply via email to