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

(-)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