From 5ec898b401670c822e159e3ae6f0e0ecb36bc789 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 9 Aug 2016 20:08:54 +0100 Subject: [PATCH] Bug 17095: (bug 16849 follow-up) Fix regression if patron does not exist Bug 16082, 'Display a friendly "patron does not exist" message if that's the case - circulation.pl' changed the behavior of the checkout page so that if you hit that page with a borrowernumber which doesn't exist a nice message will tell you so. Now when you do that you get an error message: Can't call method "is_debarred" on an undefined value at /circ/circulation.pl line 300. Test plan: confirm that the friendly message is back :) Signed-off-by: Owen Leonard Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall --- circ/circulation.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/circ/circulation.pl b/circ/circulation.pl index eddd996c2b..940e902c75 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -297,7 +297,8 @@ if ($borrowernumber) { finetotal => $fines ); - if ( Koha::Patrons->find( $borrowernumber )->is_debarred ) { + my $patron = Koha::Patrons->find( $borrowernumber ); + if ( $patron and $patron->is_debarred ) { $template->param( 'userdebarred' => $borrower->{debarred}, 'debarredcomment' => $borrower->{debarredcomment}, -- 2.39.5