Bugzilla – Attachment 5967 Details for
Bug 7057
C4::Reserves::CheckReserves uses GetMemberDetails unnecessarily
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed patch
0001-Bug-7057-CheckReserves-uses-GetMemberDetails-unneces.patch (text/plain), 1.26 KB, created by
Ian Walls
on 2011-10-18 21:58:11 UTC
(
hide
)
Description:
Proposed patch
Filename:
MIME Type:
Creator:
Ian Walls
Created:
2011-10-18 21:58:11 UTC
Size:
1.26 KB
patch
obsolete
>From 02919410b078a85a13393d78c0a7524ccf17e795 Mon Sep 17 00:00:00 2001 >From: Ian Walls <ian.walls@bywatersolutions.com> >Date: Tue, 18 Oct 2011 17:56:18 -0400 >Subject: [PATCH] Bug 7057: CheckReserves uses GetMemberDetails unnecessarily > >Replaces call to GetMemberDetails with a call to GetMember. Much more efficient, >and since only branchcode is used, no required data is lost. >--- > C4/Reserves.pm | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > >diff --git a/C4/Reserves.pm b/C4/Reserves.pm >index f7a2e72..eff4e9f 100644 >--- a/C4/Reserves.pm >+++ b/C4/Reserves.pm >@@ -828,7 +828,7 @@ sub CheckReserves { > } else { > # See if this item is more important than what we've got so far > if ( $res->{'priority'} && $res->{'priority'} < $priority ) { >- my $borrowerinfo=C4::Members::GetMemberDetails($res->{'borrowernumber'}); >+ my $borrowerinfo=C4::Members::GetMember(borrowernumber => $res->{'borrowernumber'}); > my $iteminfo=C4::Items::GetItem($itemnumber); > my $branch=C4::Circulation::_GetCircControlBranch($iteminfo,$borrowerinfo); > my $branchitemrule = C4::Circulation::GetBranchItemRule($branch,$iteminfo->{'itype'}); >-- >1.7.4.1 >
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 7057
:
5967
|
5993