From 9b6c434eb54601eb70ad3447eb7a09494f5f87bf Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Mon, 22 Nov 2021 10:53:07 +0000 Subject: [PATCH] Bug 29553: Fix crash on undefined notforloan value Test plan: Set item level itypes to biblioitems. Find a record with itemtype NULL, having an item. Place a hold. Without this patch, it crashes. Signed-off-by: Marcel de Rooy Signed-off-by: ThibaudGLT --- C4/Reserves.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Reserves.pm b/C4/Reserves.pm index a42168bc72..706721acab 100644 --- a/C4/Reserves.pm +++ b/C4/Reserves.pm @@ -1345,7 +1345,7 @@ sub IsAvailableForItemLevelRequest { # FIXME - a lot of places in the code do this # or something similar - need to be # consolidated - my $itemtype = $item->effective_itemtype; + my $itemtype = $item->effective_itemtype or return 0; my $notforloan_per_itemtype = Koha::ItemTypes->find($itemtype)->notforloan; return 0 if -- 2.20.1