@@ -, +, @@ field). --- opac/opac-basket.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/opac/opac-basket.pl +++ a/opac/opac-basket.pl @@ -71,7 +71,7 @@ foreach my $biblionumber ( @bibs ) { $template->param( biblionumber => $biblionumber ); my $biblio = Koha::Biblios->find( $biblionumber ) or next; - my $dat = $biblio->unblessed; + my $dat = { %{$biblio->unblessed}, %{$biblio->biblioitem->unblessed} }; # No filtering on the item records needed for the record itself # since the only reason item information is grabbed is because of branchcodes. --