diff options
author | ivan <ivan> | 2003-07-11 15:37:22 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-07-11 15:37:22 +0000 |
commit | fd17bda961ef38dfea0e4644b301c12a2eb980f2 (patch) | |
tree | 2f5802ddbaea477ec1ef05b26534db0d0be0830b | |
parent | 46d785c8acd2e7b3e3afbfe71e93db56791f8f77 (diff) |
fix timelocal AUTOLOAD problem introduced by Time::Local fix in rc3
(closes: Bug#550)
-rw-r--r-- | FS/FS/cust_main.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 1bb2bfbe2..4bdc71f31 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -8,7 +8,7 @@ BEGIN { eval "use Time::Local;"; die "Time::Local version 1.05 required with Perl versions before 5.6" if $] < 5.006 && !defined($Time::Local::VERSION); - eval "use Time::Local qw(timelocal_nocheck);"; + eval "use Time::Local qw(timelocal timelocal_nocheck);"; } use Date::Format; #use Date::Manip; |