From 54cfc34be5672fdfbcd23608c5d7fedfd39836e2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Buclin?= Date: Wed, 8 Dec 2010 21:16:46 +0100 Subject: [PATCH] Bug 617684: Values starting with a dot or an underscore are no longer hidden in reports r/a=mkanat --- report.cgi | 6 ------ 1 file changed, 6 deletions(-) diff --git a/report.cgi b/report.cgi index c88396ab07..17c03a9e44 100755 --- a/report.cgi +++ b/report.cgi @@ -175,12 +175,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}++; -- 2.47.2