From: Joe Atzberger (siptest <[EMAIL PROTECTED]>

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 <[EMAIL PROTECTED]>
---
 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

_______________________________________________
Koha-patches mailing list
[email protected]
http://lists.koha.org/mailman/listinfo/koha-patches

Reply via email to