@@ -, +, @@ --- C4/Reserves.pm | 2 ++ 1 file changed, 2 insertions(+) --- a/C4/Reserves.pm +++ a/C4/Reserves.pm @@ -1338,6 +1338,8 @@ sub IsAvailableForItemLevelRequest { my $patron = shift; my $pickup_branchcode = shift; + return 0 unless $patron; + my $dbh = C4::Context->dbh; # must check the notforloan setting of the itemtype # FIXME - a lot of places in the code do this --