Allow tabs and multilines
[manu/RT-Extension-SearchResults-XLS.git] / 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);