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

(-)a/opac/opac-detail.pl (-1 / +2 lines)
Lines 672-678 if ( not $viewallitems and @items > $max_items_to_display ) { Link Here
672
    $template->param(
672
    $template->param(
673
        too_many_items => 1,
673
        too_many_items => 1,
674
        items_count => scalar( @items ),
674
        items_count => scalar( @items ),
675
        AllowOnShelfHolds => 1, #userfriendly assumption, no guarantee
675
    );
676
    );
677
    $norequests = 0; # userfriendly assumption, no guarantee
676
} else {
678
} else {
677
  for my $itm (@items) {
679
  for my $itm (@items) {
678
    my $item = Koha::Items->find( $itm->{itemnumber} );
680
    my $item = Koha::Items->find( $itm->{itemnumber} );
679
- 

Return to bug 13654