Bugzilla – Attachment 46121 Details for
Bug 15344
GetMemberDetails called unecessary
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 15344: Remove one occurrence in circ/circulation.pl
Bug-15344-Remove-one-occurrence-in-circcirculation.patch (text/plain), 1.10 KB, created by
Jonathan Druart
on 2015-12-31 11:45:29 UTC
(
hide
)
Description:
Bug 15344: Remove one occurrence in circ/circulation.pl
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2015-12-31 11:45:29 UTC
Size:
1.10 KB
patch
obsolete
>From 42ffb95efb5742556a78c470f43f0b1f2c3a76da Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 31 Dec 2015 11:43:54 +0000 >Subject: [PATCH] Bug 15344: Remove one occurrence in circ/circulation.pl > >In C4::Circulation::CanBookBeIssued, $borrower->{flags} is called and >should be populated by GetMemberDetails > >It fixes the following error on checking out: >Can't use string ("1900156") as a HASH ref while "strict refs" in use at >/home/koha/src/C4/Circulation.pm line 813. >--- > circ/circulation.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/circ/circulation.pl b/circ/circulation.pl >index ab2b088..5747fbf 100755 >--- a/circ/circulation.pl >+++ b/circ/circulation.pl >@@ -270,7 +270,7 @@ if ($findborrower) { > > # get the borrower information..... > if ($borrowernumber) { >- $borrower = C4::Members::GetMember( borrowernumber => $borrowernumber ); >+ $borrower = GetMemberDetails( $borrowernumber, 0 ); > my ( $od, $issue, $fines ) = GetMemberIssuesAndFines( $borrowernumber ); > > # Warningdate is the date that the warning starts appearing >-- >2.1.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 15344
:
45553
|
45560
|
45604
|
45605
|
45848
|
45849
|
46121
|
46129