From: Joe Atzberger (siptest Date: Thu, 9 Oct 2008 22:53:36 +0000 (-0500) Subject: Fully qualify function call. X-Git-Tag: v3.00.01.005~303 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=0eaf2ff2ab9dd7f162e76f7738bb121e120adaa9;p=koha.git 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 --- 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" )