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

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

Return to bug 32894