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

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

Return to bug 11175