@@ -, +, @@ --- Koha/Biblio.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/Biblio.pm +++ a/Koha/Biblio.pm @@ -204,7 +204,7 @@ sub pickup_locations { my $patron = $params->{patron}; my @pickup_locations; - foreach my $item_of_bib ($self->items) { + foreach my $item_of_bib ($self->items->as_list) { push @pickup_locations, $item_of_bib->pickup_locations( {patron => $patron} ); } --