Is there any way to get around this error? There may be times when I need to use a template that doesn't need all of the variables made available by my perl program.
Can I turn off this checking or is it reguired that all variables be used in the template?
thanks
chad
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Is there any way to get around this error? There may be times when I need to use a template that doesn't need all of the variables made available by my perl program.
Can I turn off this checking or is it reguired that all variables be used in the template?
thanks
chad
my $template = HTML::Template->new(filename => 'foo.tmpl', die_on_bad_params => 0);
Next!
-sam