@@ -, +, @@ query result count is off --- C4/Search.pm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) --- a/C4/Search.pm +++ a/C4/Search.pm @@ -1766,10 +1766,7 @@ sub searchResults { } } } # notforloan, item level and biblioitem level - if ($items_count > 0) { - next if $is_opac && $hideatopac_count >= $items_count; - next if $hidelostitems && $itemlost_count >= $items_count; - } + my ( $availableitemscount, $onloanitemscount, $otheritemscount ); for my $key ( sort keys %$onloan_items ) { (++$onloanitemscount > $maxitems) and last; --