From: gerv%gerv.net <> Date: Wed, 27 Nov 2002 05:09:09 +0000 (+0000) Subject: Bug 181221 - CSV reports on 2-d tables have header messed up. Patch by gerv; r=joel... X-Git-Tag: bugzilla-2.17.2~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=738d3ec0bee8276d811704a86329f4da65268c05;p=thirdparty%2Fbugzilla.git Bug 181221 - CSV reports on 2-d tables have header messed up. Patch by gerv; r=joel, a=justdave. --- diff --git a/template/en/default/reports/report-table.csv.tmpl b/template/en/default/reports/report-table.csv.tmpl index 60f3a4eefd..3e702f3965 100644 --- a/template/en/default/reports/report-table.csv.tmpl +++ b/template/en/default/reports/report-table.csv.tmpl @@ -26,10 +26,14 @@ [% col_field_disp = field_descs.$col_field || col_field %] [% row_field_disp = field_descs.$row_field || row_field %] -[% "$tbl_field_disp: $tbl\n" FILTER csv IF tbl_field %] -[% row_field_disp FILTER csv IF row_field %] -[% " / " IF col_field AND row_field %] -[% col_field_disp FILTER csv %], +[% title = BLOCK %] + [% "$tbl_field_disp: $tbl\n" IF tbl_field %] + [% row_field_disp IF row_field %] + [% " / " IF col_field AND row_field %] + [% col_field_disp %] +[% END %] + +[% title FILTER csv %], [% IF col_field -%] [% FOREACH col = col_names -%] [% col FILTER csv -%],