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

(-)a/Koha/Biblio.pm (-5 / +1 lines)
Lines 507-516 Returns the related Koha::Biblioitem object for this Biblio object Link Here
507
507
508
sub biblioitem {
508
sub biblioitem {
509
    my ($self) = @_;
509
    my ($self) = @_;
510
510
    return Koha::Biblioitems->find( { biblionumber => $self->biblionumber } );
511
    $self->{_biblioitem} ||= Koha::Biblioitems->find( { biblionumber => $self->biblionumber() } );
512
513
    return $self->{_biblioitem};
514
}
511
}
515
512
516
=head3 suggestions
513
=head3 suggestions
517
- 

Return to bug 32894