From 0eaf2ff2ab9dd7f162e76f7738bb121e120adaa9 Mon Sep 17 00:00:00 2001 From: "Joe Atzberger (siptest" Date: Thu, 9 Oct 2008 17:53:36 -0500 Subject: [PATCH] Fully qualify function call. This is a pre-requisite to continued SIP processing, dealing with some arcana related to recursive dependencies and UNIVERSAL. The reason this is separate from other SIP patches is that it is expected patched in other submissions already. Signed-off-by: Galen Charlton --- C4/Circulation.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 4bb216eeb8..acf3683899 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -781,7 +781,7 @@ sub CanBookBeIssued { my ( $restype, $res ) = C4::Reserves::CheckReserves( $item->{'itemnumber'} ); if ($restype) { my $resbor = $res->{'borrowernumber'}; - my ( $resborrower ) = GetMemberDetails( $resbor, 0 ); + my ( $resborrower ) = C4::Members::GetMemberDetails( $resbor, 0 ); my $branches = GetBranches(); my $branchname = $branches->{ $res->{'branchcode'} }->{'branchname'}; if ( $resbor ne $borrower->{'borrowernumber'} && $restype eq "Waiting" ) -- 2.39.5