From: Chris Cormack Date: Tue, 8 Sep 2009 21:32:46 +0000 (+1200) Subject: Fixing syntax error in C4/Circulation.pm X-Git-Tag: v3.00.04~181 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=7bbe9d0ae2e64a88fc7947ae69b4c7d6bfefbeb7;p=koha.git Fixing syntax error in C4/Circulation.pm --- diff --git a/C4/Circulation.pm b/C4/Circulation.pm index bfbb6221b9..c260c1ef46 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -1955,12 +1955,15 @@ from the book's item type. =cut sub AddRenewal { + my $borrowernumber = shift or return undef; my $itemnumber = shift or return undef; + my $item = GetItem($itemnumber) or return undef; my $branch = (@_) ? shift : $item->{homebranch}; # opac-renew doesn't send branch my $datedue = shift; my $lastreneweddate = shift || C4::Dates->new()->output('iso'); - my $item = GetItem($itemnumber) or return undef; + + my $biblio = GetBiblioFromItemNumber($itemnumber) or return undef; # If the due date wasn't specified, calculate it by adding the