|
From: Chris W. <ch...@cw...> - 2001-10-24 02:22:03
|
* Mike Eggleston (mi...@mi...) [011023 15:12]:
> I get the following message:
>
> Can't locate object method "read_date" via package "Test::Handler::Error" (perhaps you forgot to load
> "Test::Handler::Error"?) at /www/htdocs/OI/pkg/base_error-1.30/Test/Handler/Error.pm line 60.
>
> when pressing 'Filter' on the Error Browser screen with choosing a
> previous date of 1 Jan 2000 and an ending date of 1 Dec 2002.
Egads, how dumb. Change:
my $from_date = $class->read_date( 'filter_date_from' );
to:
my $from_date = $class->date_read( 'filter_date_from' );
and:
my $to_date = $class->read_date( 'filter_date_to' );
to:
my $to_date = $class->date_read( 'filter_date_to' );
I'll update this in CVS shortly. Thanks for the post.
Chris
--
Chris Winters (ch...@cw...)
Building enterprise-capable snack solutions since 1988.
|