From d05834775180391673d7418f84a7472babee71df Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Thu, 28 Jan 2021 10:42:15 +0100 Subject: [PATCH] Bug 27432: (QA follow-up) fix if report_id --- C4/Reports/Guided.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Reports/Guided.pm b/C4/Reports/Guided.pm index 26f0350785..235e63fba8 100644 --- a/C4/Reports/Guided.pm +++ b/C4/Reports/Guided.pm @@ -542,7 +542,7 @@ sub execute_query { my ( $sql, $offset, $limit, $sql_params, $report_id ) = @_; $sql_params = [] unless defined $sql_params; - my $report = Koha::Reports->find($report_id) if $report_id; + my $report = $report_id ? Koha::Reports->find($report_id) : undef; my $report_name = $report ? $report->report_name : 'Unknown report'; # check parameters -- 2.30.0