From b69b0e9726c358886f73199a363866842dbaae0f Mon Sep 17 00:00:00 2001 From: Baptiste Wojtkowski Date: Fri, 23 Jan 2026 13:37:47 +0000 Subject: [PATCH] Bug 41695: Fix rejecter in suggestion.pm --- Koha/Suggestion.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Suggestion.pm b/Koha/Suggestion.pm index e1e654c8d24..7efd4c02f46 100644 --- a/Koha/Suggestion.pm +++ b/Koha/Suggestion.pm @@ -195,7 +195,7 @@ Returns the rejecter of the suggestion (Koha::Patron for rejectebby field) sub rejecter { my ($self) = @_; - my $rejecter_rs = $self->_result->managedby; + my $rejecter_rs = $self->_result->rejectedby; return unless $rejecter_rs; return Koha::Patron->_new_from_dbic($rejecter_rs); } -- 2.43.0