Commit 51ae9740 authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 617684: Values starting with a dot or an underscore are no longer hidden in reports

r/a=mkanat
parent 48f3c648
......@@ -161,12 +161,6 @@ foreach my $result (@$results) {
$row = "" if ($row eq EMPTY_COLUMN);
$col = "" if ($col eq EMPTY_COLUMN);
$tbl = "" if ($tbl eq EMPTY_COLUMN);
# account for the fact that names may start with '_' or '.'. Change this
# so the template doesn't hide hash elements with those keys
$row =~ s/^([._])/ $1/;
$col =~ s/^([._])/ $1/;
$tbl =~ s/^([._])/ $1/;
$data{$tbl}{$col}{$row}++;
$names{"col"}{$col}++;
......
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