diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2010-12-08 21:13:06 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-12-08 21:13:06 +0100 |
commit | 51ae9740265bc2aeda00b77c174cac860625f0c4 (patch) | |
tree | 258c781ee2cf67abf46ed1bbb6794c578e7bb583 /report.cgi | |
parent | 48f3c648d0ddb05c85140444f2e66091d5f1f7f0 (diff) | |
download | bugzilla-51ae9740265bc2aeda00b77c174cac860625f0c4.tar.gz bugzilla-51ae9740265bc2aeda00b77c174cac860625f0c4.tar.xz |
Bug 617684: Values starting with a dot or an underscore are no longer hidden in reports
r/a=mkanat
Diffstat (limited to 'report.cgi')
-rwxr-xr-x | report.cgi | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/report.cgi b/report.cgi index a70885ecd..0fbb339f3 100755 --- a/report.cgi +++ b/report.cgi @@ -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}++; |