@@ -, +, @@ visibility --- opac/opac-detail.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/opac/opac-detail.pl +++ a/opac/opac-detail.pl @@ -521,7 +521,7 @@ my @items; # Hide items if ( @items_to_show != @all_items ) { for my $itm (@all_items) { - next unless any { $itm->{itemnumber} eq $_ } @items_to_show; + next unless any { $itm->{itemnumber} eq $_->itemnumber } @items_to_show; if ( C4::Context->preference('hidelostitems') ) { push @items, $itm unless $itm->{itemlost}; } --