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

(-)a/Koha/Biblio.pm (-2 / +1 lines)
Lines 511-517 this object (MARC21 773$w points to this) Link Here
511
sub components {
511
sub components {
512
    my ($self) = @_;
512
    my ($self) = @_;
513
513
514
    return undef if (C4::Context->preference('marcflavour') ne 'MARC21');
514
    return if (C4::Context->preference('marcflavour') ne 'MARC21');
515
515
516
    if (!defined($self->{_components})) {
516
    if (!defined($self->{_components})) {
517
        my $marc = C4::Biblio::GetMarcBiblio({ biblionumber => $self->id });
517
        my $marc = C4::Biblio::GetMarcBiblio({ biblionumber => $self->id });
518
- 

Return to bug 11175