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

(-)a/basket/basket.pl (-1 / +1 lines)
Lines 64-70 foreach my $biblionumber ( @bibs ) { Link Here
64
    $template->param( biblionumber => $biblionumber );
64
    $template->param( biblionumber => $biblionumber );
65
65
66
    my $biblio           = Koha::Biblios->find( $biblionumber ) or next;
66
    my $biblio           = Koha::Biblios->find( $biblionumber ) or next;
67
    my $dat              = $biblio->unblessed;
67
    my $dat              = { %{$biblio->unblessed}, %{$biblio->biblioitem->unblessed} };
68
    my $record           = $biblio->metadata->record;
68
    my $record           = $biblio->metadata->record;
69
    my $marcnotesarray   = $biblio->get_marc_notes;
69
    my $marcnotesarray   = $biblio->get_marc_notes;
70
    my $marcauthorsarray = $biblio->get_marc_contributors;
70
    my $marcauthorsarray = $biblio->get_marc_contributors;
(-)a/opac/opac-basket.pl (-2 / +1 lines)
Lines 71-77 foreach my $biblionumber ( @bibs ) { Link Here
71
    $template->param( biblionumber => $biblionumber );
71
    $template->param( biblionumber => $biblionumber );
72
72
73
    my $biblio           = Koha::Biblios->find( $biblionumber ) or next;
73
    my $biblio           = Koha::Biblios->find( $biblionumber ) or next;
74
    my $dat              = $biblio->unblessed;
74
    my $dat = { %{$biblio->unblessed}, %{$biblio->biblioitem->unblessed} };
75
75
76
    # No filtering on the item records needed for the record itself
76
    # No filtering on the item records needed for the record itself
77
    # since the only reason item information is grabbed is because of branchcodes.
77
    # since the only reason item information is grabbed is because of branchcodes.
78
- 

Return to bug 33102