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

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

Return to bug 11175