@@ -, +, @@ from command line --- Koha/BiblioUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/BiblioUtils.pm +++ a/Koha/BiblioUtils.pm @@ -146,7 +146,7 @@ sub get_all_biblios_iterator { my $row = $rs->next(); return if !$row; my $next = eval { - my $marc = $row->metadata->record({ embed_items => 1 }); + my $marc = $row->metadata->record({ embed_items => 1, embed_host_items => 1 }); $class->new($marc, $row->biblionumber); }; if ($@) { --