From b165e9802fece8b21278775f48a99d43fe932f9d 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 084e1098e3..b9b3771660 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -782,7 +782,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