Commit 17ee4c96 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 288861: Odd number of elements in anonymous hash at query.cgi line 392 -…

Bug 288861: Odd number of elements in anonymous hash at query.cgi line 392 - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wicked a=myk
parent c15ee7a4
......@@ -389,7 +389,7 @@ for (my $chart = 0; $cgi->param("field$chart-0-0"); $chart++) {
}
push(@rows, \@cols);
}
push(@charts, {'rows' => \@rows, 'negate' => $cgi->param("negate$chart")});
push(@charts, {'rows' => \@rows, 'negate' => scalar($cgi->param("negate$chart")) });
}
$default{'charts'} = \@charts;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment