in reply to Trouble with loops in HTML::Template

I worked with Sam Tregar, HTML::Template's author. :)

Your problem is that
ArchiveExists => @tipList,
does not place @tipList in scalar context; you must enforce it:
ArchiveExists => scalar(@tipList), # or ArchiveExists => 0 + @tipList,


japhy -- Perl and Regex Hacker