@@ -, +, @@ string --- C4/Reserves.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/C4/Reserves.pm +++ a/C4/Reserves.pm @@ -853,11 +853,11 @@ sub CheckReserves { my $priority = 10000000; foreach my $res (@reserves) { - if ($res->{'found'} eq 'W') { + if ($res->{'found'} && $res->{'found'} eq 'W') { return ( "Waiting", $res, \@reserves ); # Found it, it is waiting - } elsif ($res->{'found'} eq 'P') { + } elsif ($res->{'found'} && $res->{'found'} eq 'P') { return ( "Processing", $res, \@reserves ); # Found determinated hold, e. g. the transferred one - } elsif ($res->{'found'} eq 'T') { + } elsif ($res->{'found'} && $res->{'found'} eq 'T') { return ( "Transferred", $res, \@reserves ); # Found determinated hold, e. g. the transferred one } else { my $patron; --