fixed: DataForm can't export fields containing newlines
This commit is contained in:
parent
d9cec8ff94
commit
b002dbaf47
2 changed files with 2 additions and 1 deletions
|
|
@ -10,6 +10,7 @@
|
|||
- added a new permission denied page for version tag approval
|
||||
- fixed: Shortcuts includes HTML head data twice
|
||||
- fixed: DataForm entry table isn't properly indexed
|
||||
- fixed: DataForm can't export fields containing newlines
|
||||
|
||||
7.6.0
|
||||
- added: users may now customize the post received page for the CS
|
||||
|
|
|
|||
|
|
@ -1233,7 +1233,7 @@ sub www_exportTab {
|
|||
if $field->{isMailField} && !$self->get('mailData');
|
||||
push @exportFields, $field->{name};
|
||||
}
|
||||
my $tsv = Text::CSV_XS->new({sep_char => "\t", eol => "\n"});
|
||||
my $tsv = Text::CSV_XS->new({sep_char => "\t", eol => "\n", binary => 1});
|
||||
$tsv->combine(
|
||||
'entryId',
|
||||
'ipAddress',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue