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

(-)a/Koha/Biblio.pm (-5 / +1 lines)
Lines 579-588 Returns the related Koha::Biblioitem object for this Biblio object Link Here
579
579
580
sub biblioitem {
580
sub biblioitem {
581
    my ($self) = @_;
581
    my ($self) = @_;
582
582
    return Koha::Biblioitems->find( { biblionumber => $self->biblionumber } );
583
    $self->{_biblioitem} ||= Koha::Biblioitems->find( { biblionumber => $self->biblionumber() } );
584
585
    return $self->{_biblioitem};
586
}
583
}
587
584
588
=head3 suggestions
585
=head3 suggestions
589
- 

Return to bug 32894