From 2695560b6c258bc62c090987af0486f99e51ce3f Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Thu, 22 Nov 2012 17:19:41 +0100 Subject: [PATCH] [Follow-up] Bug 9033: Wide character error in runreport.pl This patch fix a typo that prevented report to be run --- misc/cronjobs/runreport.pl | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/cronjobs/runreport.pl b/misc/cronjobs/runreport.pl index 8bb4266..2357ed8 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 "") -- 1.7.2.5