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

(-)a/C4/Search.pm (-3 / +2 lines)
Lines 1758-1767 sub searchResults { Link Here
1758
                }
1758
                }
1759
            }
1759
            }
1760
        }    # notforloan, item level and biblioitem level
1760
        }    # notforloan, item level and biblioitem level
1761
1761
	if ($items_count > 0) {
1762
        next if $is_opac       && $hideatopac_count >= $items_count;
1762
        next if $is_opac       && $hideatopac_count >= $items_count;
1763
        next if $hidelostitems && $itemlost_count   >= $items_count;
1763
        next if $hidelostitems && $itemlost_count   >= $items_count;
1764
1764
	}
1765
        my ( $availableitemscount, $onloanitemscount, $otheritemscount );
1765
        my ( $availableitemscount, $onloanitemscount, $otheritemscount );
1766
        for my $key ( sort keys %$onloan_items ) {
1766
        for my $key ( sort keys %$onloan_items ) {
1767
            (++$onloanitemscount > $maxitems) and last;
1767
            (++$onloanitemscount > $maxitems) and last;
1768
- 

Return to bug 7386