Bugzilla – Attachment 123690 Details for
Bug 28779
Calling request.pl with non-existent biblionumber gives internal server error
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28779: Skip processing of non-existent biblios
Bug-28779-Skip-processing-of-non-existent-biblios.patch (text/plain), 1.44 KB, created by
Katrin Fischer
on 2021-08-10 13:49:52 UTC
(
hide
)
Description:
Bug 28779: Skip processing of non-existent biblios
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2021-08-10 13:49:52 UTC
Size:
1.44 KB
patch
obsolete
>From 4b60ee56844ee5a9698c33dad2fee497c3dfd362 Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Joonas=20Kylm=C3=A4l=C3=A4?= <joonas.kylmala@helsinki.fi> >Date: Thu, 29 Jul 2021 19:35:47 +0300 >Subject: [PATCH] Bug 28779: Skip processing of non-existent biblios > >Just checking with a regex that whether an input looks like a biblionumber >is not enough, we need to also verify there is a biblio really existing >in the database and skip processing of hold request for non-existent >biblionumbers. > >To test: > 1) Go to page /cgi-bin/koha/reserve/request.pl?biblionumbers=XXXXX > where XXXXX is non-existent biblionumber, notice internal server error > 2) Apply patch > 3) Repeat step 1 and notice we cannot place a hold > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> > >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> >Signed-off-by: Petro Vashchuk <stalkernoid@gmail.com> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > reserve/request.pl | 5 +++++ > 1 file changed, 5 insertions(+) > >diff --git a/reserve/request.pl b/reserve/request.pl >index 00b7b6670f..4757ec091f 100755 >--- a/reserve/request.pl >+++ b/reserve/request.pl >@@ -307,6 +307,11 @@ foreach my $biblionumber (@biblionumbers) { > my %biblioloopiter = (); > > my $biblio = Koha::Biblios->find( $biblionumber ); >+ unless ($biblio) { >+ $biblioloopiter{noitems} = 1; >+ $template->param('noitems' => 1); >+ next; >+ } > > my $force_hold_level; > if ( $patron ) { >-- >2.11.0
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 28779
:
123280
|
123285
|
123304
|
123330
|
123331
|
123370
|
123371
| 123690 |
123691
|
123692