[Koha-patches] [PATCH] fixes fatal error 'Undefined subroutine &GetMemberDetails called at...'

Mason James mason.loves.sushi at gmail.com
Fri Mar 6 00:45:25 CET 2009


---
 C4/Circulation.pm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/C4/Circulation.pm b/C4/Circulation.pm
index 85b848c..47f19f2 100644
--- a/C4/Circulation.pm
+++ b/C4/Circulation.pm
@@ -777,7 +777,7 @@ sub CanBookBeIssued {
     elsif ($issue->{borrowernumber}) {
 
         # issued to someone else
-        my $currborinfo = GetMemberDetails( $issue->{borrowernumber} );
+        my $currborinfo = C4::Members::GetMemberDetails( $issue->{borrowernumber} );
 
 #        warn "=>.$currborinfo->{'firstname'} $currborinfo->{'surname'} ($currborinfo->{'cardnumber'})";
         $needsconfirmation{ISSUED_TO_ANOTHER} =
-- 
1.5.6.5




More information about the Koha-patches mailing list