Bugzilla – Attachment 129320 Details for
Bug 29840
opac-reserve explodes if invalid biblionumber is passed
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 29840: Deal with non-existing biblionumber in opac-reserve
Bug-29840-Deal-with-non-existing-biblionumber-in-o.patch (text/plain), 1.07 KB, created by
Owen Leonard
on 2022-01-11 18:19:18 UTC
(
hide
)
Description:
Bug 29840: Deal with non-existing biblionumber in opac-reserve
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2022-01-11 18:19:18 UTC
Size:
1.07 KB
patch
obsolete
>From a8f3d22277ce126a9abd94c488cf2bdde74b1c64 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Mon, 10 Jan 2022 14:02:49 +0100 >Subject: [PATCH] Bug 29840: Deal with non-existing biblionumber in > opac-reserve > >We should not explode if the biblionumber passed in not in DB. > >Test plan: >Hit /cgi-bin/koha/opac-reserve.pl?biblionumber=42424 >and notice the error message. > >Without this patch you got >Can't call method "holds" on an undefined value at >/kohadevbox/koha/opac/opac-reserve.pl line 172 > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >--- > opac/opac-reserve.pl | 2 ++ > 1 file changed, 2 insertions(+) > >diff --git a/opac/opac-reserve.pl b/opac/opac-reserve.pl >index a7391e2327..9ed1021054 100755 >--- a/opac/opac-reserve.pl >+++ b/opac/opac-reserve.pl >@@ -168,6 +168,8 @@ foreach my $biblioNumber (@biblionumbers) { > > # Compute the priority rank. > my $biblio = Koha::Biblios->find( $biblioNumber ); >+ next unless $biblio; >+ > $biblioData->{object} = $biblio; > my $holds = $biblio->holds; > my $rank = $holds->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 29840
:
129256
|
129320
|
129483