@@ -, +, @@ --- opac/opac-shelves.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/opac/opac-shelves.pl +++ a/opac/opac-shelves.pl @@ -270,10 +270,10 @@ if ( $op eq 'view' ) { my @items; while ( my $content = $contents->next ) { my $biblionumber = $content->biblionumber; - my $this_item = GetBiblioData($biblionumber); + my $biblio = Koha::Biblios->find( $biblionumber ); + my $this_item = $biblio->unblessed; my $record = GetMarcBiblio({ biblionumber => $biblionumber }); my $framework = GetFrameworkCode( $biblionumber ); - my $biblio = Koha::Biblios->find( $biblionumber ); $record_processor->options({ interface => 'opac', frameworkcode => $framework --