From 0c287f21bcc91ebdadffad347c111e8e55538b1d Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Tue, 26 Sep 2023 09:35:01 +0000 Subject: [PATCH] [23.11.x] Bug 34838: Only check for status in status graph if request has a status This check is required because when the existing_statuses method checks for the existing status_alias, it'll leave out the status from the query, so the status will be NULL for those particular query results when calling strings_map, throwing a warning Signed-off-by: Nick Clemens Signed-off-by: Tomas Cohen Arazi --- Koha/Illrequest.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Koha/Illrequest.pm b/Koha/Illrequest.pm index 1496c45977c..f7ed9854d8e 100644 --- a/Koha/Illrequest.pm +++ b/Koha/Illrequest.pm @@ -1972,12 +1972,12 @@ sub strings_map { } my $status_string = - ( exists $status_graph_union->{ $self->status } && defined $status_graph_union->{ $self->status }->{name} ) + ( $self->status && exists $status_graph_union->{ $self->status } && defined $status_graph_union->{ $self->status }->{name} ) ? $status_graph_union->{ $self->status }->{name} : $self->status; my $status_code = - ( exists $status_graph_union->{ $self->status } && defined $status_graph_union->{ $self->status }->{id} ) + ( $self->status && exists $status_graph_union->{ $self->status } && defined $status_graph_union->{ $self->status }->{id} ) ? $status_graph_union->{ $self->status }->{id} : $self->status; -- 2.45.0