From 5f71e5ff602207fddac0520f2af8eaf5fab31ea4 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 12 Jan 2022 09:43:48 -0300 Subject: [PATCH] Bug 29544: (QA follow-up) Simplify code I think this is a better approach for the same thing. Posting it just in case it helps. Signed-off-by: Tomas Cohen Arazi Signed-off-by: Victor Grousset/tuxayo (cherry picked from commit 191cf52da7e2829cba1206612f2dcfc21366a986) Signed-off-by: Andrew Fuerste-Henry --- opac/opac-issue-note.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/opac/opac-issue-note.pl b/opac/opac-issue-note.pl index 84bd0927bc..ce0916a075 100755 --- a/opac/opac-issue-note.pl +++ b/opac/opac-issue-note.pl @@ -50,10 +50,9 @@ $template->param( ); my $issue_id = $query->param('issue_id'); -my $issue = Koha::Checkouts->find( $issue_id ); +my $issue = $patron->checkouts->find( $issue_id ); - -if ( !$issue || $issue->borrowernumber != $borrowernumber ) { +unless ( $issue ) { # exit early print $query->redirect("/cgi-bin/koha/opac-user.pl"); exit; -- 2.39.2