diff options
author | gerv%gerv.net <> | 2005-03-11 07:20:18 +0100 |
---|---|---|
committer | gerv%gerv.net <> | 2005-03-11 07:20:18 +0100 |
commit | 808080906d2e37fcd3df917cc65fd31741466f87 (patch) | |
tree | afdfa98b450027c2675060c6d8df318bfbfb8c09 /template/en/default/reports | |
parent | 3dbc33fa256c3df2f4c15bad98dac5a73fcc09b3 (diff) | |
download | bugzilla-808080906d2e37fcd3df917cc65fd31741466f87.tar.gz bugzilla-808080906d2e37fcd3df917cc65fd31741466f87.tar.xz |
Bug 262864 - make tabular reports show columns which have an empty header. Patch by robzilla@siklos.ca; r=gerv, a=myk.
Diffstat (limited to 'template/en/default/reports')
-rw-r--r-- | template/en/default/reports/report-table.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/reports/report-table.html.tmpl b/template/en/default/reports/report-table.html.tmpl index 21ff1b874..3c90d5bf2 100644 --- a/template/en/default/reports/report-table.html.tmpl +++ b/template/en/default/reports/report-table.html.tmpl @@ -85,7 +85,7 @@ [% col_idx = 1 - col_idx %] <td class="[% classes.$row_idx.$col_idx %]"> - [% col FILTER html %] + [% col FILTER html FILTER replace('^ $',' ') %] </td> [% END %] <td class="ttotal"> @@ -100,7 +100,7 @@ [% row_idx = 1 - row_idx %] <tr> <td class="[% classes.$row_idx.$col_idx %]" align="right"> - [% row FILTER html %] + [% row FILTER html FILTER replace('^ $',' ') %] </td> [% FOREACH col = col_names %] [% row_total = row_total + data.$tbl.$col.$row %] |