Bugzilla – Attachment 69935 Details for
Bug 19808
Reviews from deleted patrons make few scripts to explode
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED-OFF] Bug 19808: (follow-up) Handle deleted reviewers gracefully - opac-detail
SIGNED-OFF-Bug-19808-follow-up-Handle-deleted-revi.patch (text/plain), 1.48 KB, created by
Jon Knight
on 2017-12-19 22:38:36 UTC
(
hide
)
Description:
[SIGNED-OFF] Bug 19808: (follow-up) Handle deleted reviewers gracefully - opac-detail
Filename:
MIME Type:
Creator:
Jon Knight
Created:
2017-12-19 22:38:36 UTC
Size:
1.48 KB
patch
obsolete
>From 7b72f68fbad27c998bd36919f0a49b8a54aedbad Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Mon, 18 Dec 2017 13:32:02 -0300 >Subject: [PATCH] [SIGNED-OFF] Bug 19808: (follow-up) Handle deleted reviewers > gracefully - opac-detail > >Make the tests easier to read > >Signed-off-by: Jon Knight <J.P.Knight@lboro.ac.uk> >--- > opac/opac-detail.pl | 14 ++++++++------ > 1 file changed, 8 insertions(+), 6 deletions(-) > >diff --git a/opac/opac-detail.pl b/opac/opac-detail.pl >index 745c49c..9ace469 100755 >--- a/opac/opac-detail.pl >+++ b/opac/opac-detail.pl >@@ -844,13 +844,15 @@ if ( C4::Context->preference('reviewson') ) { > my $patron = Koha::Patrons->find( $review->{borrowernumber} ); > > # setting some borrower info into this hash >- $review->{patron} = $patron; >- if ( $libravatar_enabled and $patron and $patron->email ) { >- $review->{avatarurl} = libravatar_url( email => $patron->email, https => $ENV{HTTPS} ); >- } >+ if ( $patron ) { >+ $review->{patron} = $patron; >+ if ( $libravatar_enabled and $patron->email ) { >+ $review->{avatarurl} = libravatar_url( email => $patron->email, https => $ENV{HTTPS} ); >+ } > >- if ( $patron and $patron->borrowernumber eq $borrowernumber ) { >- $loggedincommenter = 1; >+ if ( $patron->borrowernumber eq $borrowernumber ) { >+ $loggedincommenter = 1; >+ } > } > } > } >-- >2.1.4
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 19808
:
69824
|
69828
|
69853
|
69854
|
69855
|
69856
|
69926
|
69934
|
69935
|
69936
|
69937
|
69938
|
69989
|
69990
|
69991
|
69992
|
69993