@@ -, +, @@ --- C4/Reserves.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/C4/Reserves.pm +++ a/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 --