From: Emmanuel Lacour Date: Wed, 12 Mar 2014 17:25:02 +0000 (+0100) Subject: Allow tabs and multilines X-Git-Tag: 0.08 X-Git-Url: http://git.home-dn.net/?p=manu%2FRT-Extension-SearchResults-XLS.git;a=commitdiff_plain;h=01d49d6eb897726684b1aa68866ed2a70f709a50 Allow tabs and multilines --- diff --git a/html/Search/Results.xls b/html/Search/Results.xls index 785092e..b1eb15d 100644 --- a/html/Search/Results.xls +++ b/html/Search/Results.xls @@ -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);