From efaf1be1c529c7ea20bf534923ba13ad18fba319 Mon Sep 17 00:00:00 2001 From: Joe Atzberger Date: Fri, 7 Dec 2007 17:38:25 -0600 Subject: [PATCH] Log.pm and Suggestions.pm - simple (correct) Dates.pm integration Signed-off-by: Joshua Ferraro --- C4/Log.pm | 2 +- C4/Suggestions.pm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/C4/Log.pm b/C4/Log.pm index edc426d722..898e2a733e 100644 --- a/C4/Log.pm +++ b/C4/Log.pm @@ -22,7 +22,7 @@ package C4::Log; #assumes C4/Log use strict; use C4::Context; -use C4::Date; +use C4::Dates qw(format_date); require Exporter; diff --git a/C4/Suggestions.pm b/C4/Suggestions.pm index 1cb215f844..336e408c1f 100644 --- a/C4/Suggestions.pm +++ b/C4/Suggestions.pm @@ -22,12 +22,12 @@ use strict; require Exporter; use C4::Context; use C4::Output; -use C4::Date; +use C4::Dates qw(format_date); use Mail::Sendmail; use vars qw($VERSION @ISA @EXPORT); # set the version for version checking -$VERSION = 3.00; +$VERSION = 3.01; =head1 NAME -- 2.11.4.GIT