From 3d9d36191138790eb12883824f9ef92e51261063 Mon Sep 17 00:00:00 2001 From: Andrew Nugged Date: Sat, 11 Dec 2021 23:58:20 +0200 Subject: [PATCH] Bug 20447: (QA follow-up) Warning removal: undef param 'sep' expected to be string in further processing Signed-off-by: Nick Clemens --- reports/cat_issues_top.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/cat_issues_top.pl b/reports/cat_issues_top.pl index 23666f314c..6af4372bfb 100755 --- a/reports/cat_issues_top.pl +++ b/reports/cat_issues_top.pl @@ -55,7 +55,7 @@ my ($template, $borrowernumber, $cookie) type => "intranet", flagsrequired => { reports => '*'}, }); -our $sep = $input->param("sep"); +our $sep = $input->param("sep") // ''; $sep = "\t" if ($sep eq 'tabulation'); $template->param(do_it => $do_it, ); -- 2.30.2