From 78dfaa183124fecf48e3c93543a97770250ff565 Mon Sep 17 00:00:00 2001 From: Colin Campbell Date: Wed, 30 Mar 2011 14:53:46 -0400 Subject: [PATCH] Bug 5548: Correct punctuation in patch Punctuation should be a semi-colon not a comma It works but is a trap for the unwary in the future Signed-off-by: Ian Walls Signed-off-by: Chris Cormack --- C4/Circulation.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 4f55ec2095..c33e4d9154 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -2255,7 +2255,7 @@ sub AddRenewal { unless ($datedue) { my $borrower = C4::Members::GetMemberDetails( $borrowernumber, 0 ) or return undef; - my $itemtype = (C4::Context->preference('item-level_itypes')) ? $biblio->{'itype'} : $biblio->{'itemtype'} , + my $itemtype = (C4::Context->preference('item-level_itypes')) ? $biblio->{'itype'} : $biblio->{'itemtype'}; $datedue = (C4::Context->preference('RenewalPeriodBase') eq 'date_due') ? C4::Dates->new($issuedata->{date_due}, 'iso') : -- 2.39.2