From ff179bb1d4cd461c4ac029d139b5f50ea6b22a0e Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Mon, 29 Oct 2007 14:09:35 -0500 Subject: [PATCH] Fix for bug 1518 Signed-off-by: Chris Cormack Signed-off-by: Joshua Ferraro --- circ/circulation.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circ/circulation.pl b/circ/circulation.pl index 813eaa2ad1..42861c18ce 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -409,7 +409,7 @@ if ($borrower) { ($restype) and $it->{'can_renew'} = 0; $it->{'dd'} = format_date($it->{'date_due'}); - my $datedue = format_date($it->{'date_due'}); + my $datedue = $it->{'date_due'}; $datedue =~ s/-//g; $it->{'od'} = ($datedue < $todaysdate) ? 1 : 0 ; ($it->{'author'} eq '') and $it->{'author'} = ' '; -- 2.39.5