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

(-)a/Koha/Biblio.pm (-5 / +1 lines)
Lines 549-558 Returns the related Koha::Biblioitem object for this Biblio object Link Here
549
549
550
sub biblioitem {
550
sub biblioitem {
551
    my ($self) = @_;
551
    my ($self) = @_;
552
552
    return Koha::Biblioitems->find( { biblionumber => $self->biblionumber } );
553
    $self->{_biblioitem} ||= Koha::Biblioitems->find( { biblionumber => $self->biblionumber() } );
554
555
    return $self->{_biblioitem};
556
}
553
}
557
554
558
=head3 suggestions
555
=head3 suggestions
559
- 

Return to bug 32894