From 42ffb95efb5742556a78c470f43f0b1f2c3a76da 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 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. --- 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 -- 2.1.0