@@ -, +, @@ opac-reserve --- opac/opac-reserve.pl | 2 ++ 1 file changed, 2 insertions(+) --- a/opac/opac-reserve.pl +++ a/opac/opac-reserve.pl @@ -168,6 +168,8 @@ foreach my $biblioNumber (@biblionumbers) { # Compute the priority rank. my $biblio = Koha::Biblios->find( $biblioNumber ); + next unless $biblio; + $biblioData->{object} = $biblio; my $holds = $biblio->holds; my $rank = $holds->count; --