From 7886b2fe17ddc184789bda2aca7f92998c6fc6cb Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Tue, 10 Nov 2009 17:27:58 +0100 Subject: [PATCH] Spalte "Transfertyp" auch bei CSV- und PDF-Export ausgeben. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fix fÃŒr Bug 1258. --- bin/mozilla/wh.pl | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/bin/mozilla/wh.pl b/bin/mozilla/wh.pl index 6d39dda42..b6165a87e 100644 --- a/bin/mozilla/wh.pl +++ b/bin/mozilla/wh.pl @@ -733,18 +733,13 @@ sub generate_journal { my $row = { }; foreach my $column (@columns) { - next if ($column eq 'trans_type'); - $row->{$column} = { 'data' => $entry->{$column}, 'align' => $column_alignment{$column}, }; } - $row->{trans_type} = { - 'raw_data' => $entry->{trans_type}, - 'align' => $column_alignment{trans_type}, - }; + $row->{trans_type}->{raw_data} = $entry->{trans_type}; if ($form->{l_oe_id}) { $row->{oe_id}->{data} = ''; -- 2.20.1