Re: [htmltmpl] Request/question

2006-03-22 Thread Eric Frazier
Hi, So I can do that from within the app were I am using HTML::Template.. Ahh, I was wondering why everyone always uses croak by default in all of the modules I look at.. Thanks! Eric At 12:11 PM 3/21/2006, Sam Tregar wrote: On Tue, 21 Mar 2006, Eric Frazier wrote: Is there any way you co

Re: [htmltmpl] Request/question

2006-03-21 Thread Sam Tregar
On Tue, 21 Mar 2006, Eric Frazier wrote: Is there any way you could change this line in Template.pm from croak to confess? No need to change Template.pm. Just tell Carp you want verbose reports: use Carp qw(verbose); Now all croak()s will have stack traces. -sam ---

[htmltmpl] Request/question

2006-03-21 Thread Eric Frazier
Hi, Is there any way you could change this line in Template.pm from croak to confess? I know I might be missing something about croak vs confess, but it is always a pain to get this error and then have to try to figure out where it came from, whereas with confess it is easy.. # load in opti