From 26cdaaae777dd21314df90177fe070730575fb85 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Tue, 11 Mar 2014 14:57:26 +0000 Subject: [PATCH] Bug 10777: (follow-up) improve CSS3 for Zebra-striping report email output This patch improves the CSS used to attempt to Zebra-stripe the output of emailed reports. This will work with some email clients, but other email clients (e.g., Gmail) don't handle style elements in the body or head element. Signed-off-by: Galen Charlton --- misc/cronjobs/runreport.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/cronjobs/runreport.pl b/misc/cronjobs/runreport.pl index 18e175d835..41e97611ce 100755 --- a/misc/cronjobs/runreport.pl +++ b/misc/cronjobs/runreport.pl @@ -244,7 +244,7 @@ foreach my $report_id (@ARGV) { if ($email){ my %mail; if ($format eq 'html') { - $message = "$message"; + $message = "$message"; %mail = ( To => $to, From => $from, -- 2.20.1