View | Details | Raw Unified | Return to bug 19298
Collapse All | Expand All

(-)a/opac/opac-shelves.pl (-3 / +2 lines)
Lines 270-279 if ( $op eq 'view' ) { Link Here
270
            my @items;
270
            my @items;
271
            while ( my $content = $contents->next ) {
271
            while ( my $content = $contents->next ) {
272
                my $biblionumber = $content->biblionumber;
272
                my $biblionumber = $content->biblionumber;
273
                my $this_item    = GetBiblioData($biblionumber);
273
                my $biblio = Koha::Biblios->find( $biblionumber );
274
                my $this_item = $biblio->unblessed;
274
                my $record = GetMarcBiblio({ biblionumber => $biblionumber });
275
                my $record = GetMarcBiblio({ biblionumber => $biblionumber });
275
                my $framework = GetFrameworkCode( $biblionumber );
276
                my $framework = GetFrameworkCode( $biblionumber );
276
                my $biblio = Koha::Biblios->find( $biblionumber );
277
                $record_processor->options({
277
                $record_processor->options({
278
                    interface => 'opac',
278
                    interface => 'opac',
279
                    frameworkcode => $framework
279
                    frameworkcode => $framework
280
- 

Return to bug 19298