diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2010-12-08 21:16:46 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-12-08 21:16:46 +0100 |
commit | 54cfc34be5672fdfbcd23608c5d7fedfd39836e2 (patch) | |
tree | c4e38963a9d05ca5f7def5ef695b467709250f9d | |
parent | Bug 416784: In PostgreSQL 8.1 and newer, createuser takes the argument -R ins... (diff) | |
download | bugzilla-54cfc34be5672fdfbcd23608c5d7fedfd39836e2.tar.gz bugzilla-54cfc34be5672fdfbcd23608c5d7fedfd39836e2.tar.bz2 bugzilla-54cfc34be5672fdfbcd23608c5d7fedfd39836e2.zip |
Bug 617684: Values starting with a dot or an underscore are no longer hidden in reports
r/a=mkanat
-rwxr-xr-x | report.cgi | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/report.cgi b/report.cgi index c88396ab0..17c03a9e4 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}++; |