fixed: DataForm export tab delimited doesn't work
This commit is contained in:
parent
4f5e3a6a43
commit
67d9982d12
2 changed files with 3 additions and 2 deletions
|
|
@ -1,4 +1,5 @@
|
|||
7.6.0
|
||||
- fixed: DataForm export tab delimited doesn't work
|
||||
- fixed: Project Manager sometimes causes errors when adding users to a task
|
||||
- fixed: site navigation will sometimes show as half or not styled
|
||||
- fixed: after editting assets from the asset manager, it returns to site instead of manager
|
||||
|
|
|
|||
|
|
@ -1233,7 +1233,7 @@ sub www_exportTab {
|
|||
'submissionDate',
|
||||
@exportFields,
|
||||
);
|
||||
my $outText = $tsv->print;
|
||||
my $outText = $tsv->string;
|
||||
|
||||
while (my $entryData = $entries->hashRef) {
|
||||
my $entryFields = JSON::from_json($entryData->{entryData});
|
||||
|
|
@ -1245,7 +1245,7 @@ sub www_exportTab {
|
|||
WebGUI::DateTime->new($self->session, $entryData->{submissionDate})->webguiDate,
|
||||
@{ $entryFields }{@exportFields},
|
||||
);
|
||||
$outText .= $tsv->print;
|
||||
$outText .= $tsv->string;
|
||||
}
|
||||
$entries->finish;
|
||||
$self->session->http->setFilename($self->get("url").".tab","text/plain");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue