From cceb6330991710129c2dc7d012c55baad7b90026 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 21 Apr 2023 11:24:04 +0100 Subject: [PATCH] Bug 32894: (QA follow-up) Fix typo Signed-off-by: Martin Renvoize --- Koha/ArticleRequest.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/ArticleRequest.pm b/Koha/ArticleRequest.pm index 29a2471d51..42d2d011f1 100644 --- a/Koha/ArticleRequest.pm +++ b/Koha/ArticleRequest.pm @@ -178,7 +178,7 @@ Returns the Koha::Biblio object for this article request sub biblio { my ($self) = @_; - my $rs = $self->result->biblionumber; + my $rs = $self->_result->biblionumber; return unless $rs; return Koha::Biblio->_new_from_dbic($rs); } -- 2.40.0