From: jocuri%softhome.net <> Date: Mon, 25 Oct 2004 06:25:54 +0000 (+0000) Subject: Patch for bug 252137: tabular reports shouldn't be broken if a row/col/tbl header... X-Git-Tag: bugzilla-2.19.1~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef6774469d8f5232bacb2266d469e57c63c3c689;p=thirdparty%2Fbugzilla.git Patch for bug 252137: tabular reports shouldn't be broken if a row/col/tbl header begins with an underscore; patch by Rob Siklos ; r=gerv, a=justdave. --- diff --git a/report.cgi b/report.cgi index fac2f0e757..63a87d0e4d 100755 --- a/report.cgi +++ b/report.cgi @@ -174,6 +174,12 @@ while (MoreSQLData()) { $col = "" if ($col eq $columns{''}); $tbl = "" if ($tbl eq $columns{''}); + # 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}++; $names{"row"}{$row}++;