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

(-)a/Koha/ArticleRequest.pm (-2 / +1 lines)
Lines 178-184 Returns the Koha::Biblio object for this article request Link Here
178
sub biblio {
178
sub biblio {
179
    my ($self) = @_;
179
    my ($self) = @_;
180
180
181
    my $rs = $self->result->biblionumber;
181
    my $rs = $self->_result->biblionumber;
182
    return unless $rs;
182
    return unless $rs;
183
    return Koha::Biblio->_new_from_dbic($rs);
183
    return Koha::Biblio->_new_from_dbic($rs);
184
}
184
}
185
- 

Return to bug 32894