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

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

Return to bug 11175