From 09498f23b5d252101f2cb2070d8e4a10f3e4f33e Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 31 Dec 2015 11:43:54 +0000 Subject: [PATCH] Bug 15344: Remove one occurrence in circ/circulation.pl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In C4::Circulation::CanBookBeIssued, $borrower->{flags} is called and should be populated by GetMemberDetails It fixes the following error on checking out: Can't use string ("1900156") as a HASH ref while "strict refs" in use at /home/koha/src/C4/Circulation.pm line 813. Note: Error occurs with patrons with staff permissions, not with 'normal' patrons. Error is fixed with this patch. Signed-off-by: Marc VĂ©ron --- circ/circulation.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circ/circulation.pl b/circ/circulation.pl index ab2b088..5747fbf 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -270,7 +270,7 @@ if ($findborrower) { # get the borrower information..... if ($borrowernumber) { - $borrower = C4::Members::GetMember( borrowernumber => $borrowernumber ); + $borrower = GetMemberDetails( $borrowernumber, 0 ); my ( $od, $issue, $fines ) = GetMemberIssuesAndFines( $borrowernumber ); # Warningdate is the date that the warning starts appearing -- 1.7.10.4