From e11cebc87f3464e0f2d384b8c522c4325126a814 Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Thu, 22 Nov 2012 17:19:41 +0100 Subject: [PATCH] Bug 9033: Wide character error in runreport.pl This patch fix a typo that prevented report to be run Signed-off-by: Kyle M Hall Signed-off-by: Paul Poulain Signed-off-by: Jared Camins-Esakov Signed-off-by: Chris Cormack --- misc/cronjobs/runreport.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/cronjobs/runreport.pl b/misc/cronjobs/runreport.pl index 8bb4266628..2357ed8b35 100755 --- a/misc/cronjobs/runreport.pl +++ b/misc/cronjobs/runreport.pl @@ -193,9 +193,9 @@ foreach my $report_id (@ARGV) { warn "ERROR: No saved report $report_id found"; next; } - my $sql => $report->{savedsql}; - my $report_name => $report->{report_name}; - my $type => $report->{type}; + my $sql = $report->{savedsql}; + my $report_name = $report->{report_name}; + my $type = $report->{type}; $verbose and print "SQL: $sql\n\n"; if (defined($report_name) and $report_name ne "") -- 2.39.5