Re: [htmltmpl] Erro: You gave me an odd number of parameters to param()!
Brought to you by:
samtregar
From: Gabor S. <ga...@pe...> - 2004-09-10 18:14:34
|
you passed the array instead of the array reference > $template -> param(pagetitle => "Search Results", > showlist => @$allshows); ^^^^ this is probably the correct one: $template -> param(pagetitle => "Search Results", showlist => $allshows); Gabor |