From: Frédéric Buclin Date: Wed, 8 Dec 2010 20:14:32 +0000 (+0100) Subject: Bug 617684: Values starting with a dot or an underscore are no longer hidden in reports X-Git-Tag: bugzilla-4.0rc2~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=efe6a6cf11e8762173d899d291b001c60f35ddc9;p=thirdparty%2Fbugzilla.git Bug 617684: Values starting with a dot or an underscore are no longer hidden in reports r/a=mkanat --- diff --git a/report.cgi b/report.cgi index 279d7ceeab..9695d54da2 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}++;