summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2003-07-11 15:37:20 +0000
committerivan <ivan>2003-07-11 15:37:20 +0000
commit0fd73142247563fb21f7f6eef6c0de7ab00d3fc7 (patch)
tree77650257bf6c2c5252f704f1ada22363a3e8ba94
parent3d7644882ebf59fcac7230a408d06e7c4e1bb34b (diff)
fix timelocal AUTOLOAD problem introduced by Time::Local fix in rc3
(closes: Bug#550)
-rw-r--r--FS/FS/cust_main.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm
index 165e6962b..4302c504a 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;