in reply to HTML::Template Interpolation Error?
This causes an HTML::Template error when die_on_bad_params is set. Either use join "" => checkbox_group(...) or force scalar context (with scalar or with concatenation as you did above) to get what you want.$html->param( rcadd_list => "<input type=checkbox ...", "<input type=checkbox ..." => "<input type=checkbox ...", "<input type=checkbox ..." => ... );
blokhead
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: HTML::Template Interpolation Error?
by hbo (Monk) on Aug 16, 2004 at 21:26 UTC | |
by blokhead (Monsignor) on Aug 16, 2004 at 21:35 UTC | |
by hbo (Monk) on Aug 16, 2004 at 21:48 UTC |