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

(-)a/Koha/Biblio.pm (-2 / +1 lines)
Lines 490-496 this object (MARC21 773$w points to this) Link Here
490
sub components {
490
sub components {
491
    my ($self) = @_;
491
    my ($self) = @_;
492
492
493
    return undef if (C4::Context->preference('marcflavour') ne 'MARC21');
493
    return if (C4::Context->preference('marcflavour') ne 'MARC21');
494
494
495
    if (!defined($self->{_components})) {
495
    if (!defined($self->{_components})) {
496
        my $marc = C4::Biblio::GetMarcBiblio({ biblionumber => $self->id });
496
        my $marc = C4::Biblio::GetMarcBiblio({ biblionumber => $self->id });
497
- 

Return to bug 11175