From 0f529081b92e0e7f76de71992d51277e032d5807 Mon Sep 17 00:00:00 2001 From: Colin Campbell Date: Wed, 30 Mar 2011 12:56:16 +0100 Subject: [PATCH] Bug 5548: Correct punctuation in patch Content-Type: text/plain; charset="utf-8" Punctuation should be a semi-colon not a comma It works but is a trap for the unwary in the future --- C4/Circulation.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index dad54e3..ca13bb8 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') : -- 1.7.4