View | Details | Raw Unified | Return to bug 29840
Collapse All | Expand All

(-)a/opac/opac-reserve.pl (-1 / +2 lines)
Lines 168-173 foreach my $biblioNumber (@biblionumbers) { Link Here
168
168
169
    # Compute the priority rank.
169
    # Compute the priority rank.
170
    my $biblio = Koha::Biblios->find( $biblioNumber );
170
    my $biblio = Koha::Biblios->find( $biblioNumber );
171
    next unless $biblio;
172
171
    $biblioData->{object} = $biblio;
173
    $biblioData->{object} = $biblio;
172
    my $holds = $biblio->holds;
174
    my $holds = $biblio->holds;
173
    my $rank = $holds->count;
175
    my $rank = $holds->count;
174
- 

Return to bug 29840