Bugzilla – Attachment 89221 Details for
Bug 22813
searchResults queries the Koha::Patron object inside two nested loops
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22813: (follow-up) Add missing condition
Bug-22813-follow-up-Add-missing-condition.patch (text/plain), 1.87 KB, created by
Martin Renvoize (ashimema)
on 2019-05-02 10:58:30 UTC
(
hide
)
Description:
Bug 22813: (follow-up) Add missing condition
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2019-05-02 10:58:30 UTC
Size:
1.87 KB
patch
obsolete
>From 6efbd39cd7d615797510a821dda2a19da5d6859a Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Tue, 30 Apr 2019 15:48:14 -0300 >Subject: [PATCH] Bug 22813: (follow-up) Add missing condition > >This patch restores a missing condition. $patron gets renamed to make >it obvious that it related to the logged in user. > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > C4/Search.pm | 10 ++++++---- > 1 file changed, 6 insertions(+), 4 deletions(-) > >diff --git a/C4/Search.pm b/C4/Search.pm >index b578e2acb6..559abea4ba 100644 >--- a/C4/Search.pm >+++ b/C4/Search.pm >@@ -1923,10 +1923,11 @@ sub searchResults { > my $sysxml = $xslfile ? C4::XSLT::get_xslt_sysprefs() : undef; > > my $userenv = C4::Context->userenv; >- my $patron = ( defined $userenv and $userenv->{number} ) >- ? Koha::Patrons->find( $userenv->{number} ) >- : undef; >- my $patron_category_hide_lost_items = ($patron) ? $patron->category->hidelostitems : 0; >+ my $logged_in_user >+ = ( defined $userenv and $userenv->{number} ) >+ ? Koha::Patrons->find( $userenv->{number} ) >+ : undef; >+ my $patron_category_hide_lost_items = ($logged_in_user) ? $logged_in_user->category->hidelostitems : 0; > > # loop through all of the records we've retrieved > for ( my $i = $offset ; $i <= $times - 1 ; $i++ ) { >@@ -2119,6 +2120,7 @@ sub searchResults { > my $prefix = $item->{$hbranch} . '--' . $item->{location} . $item->{itype} . $item->{itemcallnumber}; > # For each grouping of items (onloan, available, unavailable), we build a key to store relevant info about that item > if ( $item->{onloan} >+ and $logged_in_user > and !( $patron_category_hide_lost_items and $item->{itemlost} ) ) > { > $onloan_count++; >-- >2.20.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 22813
:
89137
|
89150
|
89151
|
89220
| 89221