Skip to content

Commit

Permalink
Fixed issue: HTML quotes not properly decoded in VV export file header
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Nov 8, 2018
1 parent eef9513 commit 26dba20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/admin/export.php
Expand Up @@ -642,7 +642,7 @@ public function vvexport()
if (count($fielddata) < 1) {
$firstline .= $field;
} else {
$firstline .= preg_replace('/\s+/', ' ', strip_tags($fielddata['question']));
$firstline .= preg_replace('/\s+/', ' ', flattenText($fielddata['question'],false,true,'UTF-8',true));
}
$firstline .= $s;
if ($vvVersion == 2) {
Expand Down

0 comments on commit 26dba20

Please sign in to comment.