[Koha-patches] [PATCH] Fully qualify function call.

Galen Charlton galen.charlton at liblime.com
Tue Oct 14 20:11:32 CEST 2008


From: Joe Atzberger (siptest <atz4sip at arwen.metavore.com>

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 <galen.charlton at liblime.com>
---
 C4/Circulation.pm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/C4/Circulation.pm b/C4/Circulation.pm
index 084e109..b9b3771 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" )
-- 
1.5.5.GIT



More information about the Koha-patches mailing list