Allow tabs and multilines 0.08
authorEmmanuel Lacour <elacour@easter-eggs.com>
Wed, 12 Mar 2014 17:25:02 +0000 (18:25 +0100)
committerEmmanuel Lacour <elacour@easter-eggs.com>
Wed, 12 Mar 2014 17:25:02 +0000 (18:25 +0100)
html/Search/Results.xls

index 785092e..b1eb15d 100644 (file)
@@ -142,9 +142,7 @@ while (my $row = $Tickets->Next) {
         for (@$col) {
             my $val = ProcessColumnMapValue($_->{map}, Arguments => [$row, $ii++], Escape => 0);
             $val = loc($val) if $_->{should_loc};
-            # remove tabs from all field values, they screw up the tsv
             $val = '' unless defined $val;
-            $val =~ s/(?:\n|\r)//g; $val =~ s{\t}{    }g;
             $val = $no_html->scrub($val);
             $val = HTML::Entities::decode_entities($val);
             $worksheet->write_string($ws_row, $ws_col, $val);