Skip to content

Commit

Permalink
Fixed issue: Incomplete headers when exporting 'Multiple choice with …
Browse files Browse the repository at this point in the history
…comment' questions
  • Loading branch information
c-schmitz committed Feb 12, 2020
1 parent d282d0e commit dfd334c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion application/helpers/common_helper.php
Expand Up @@ -1879,7 +1879,8 @@ function createFieldMap($survey, $style = 'short', $force_refresh = false, $ques
if ($style == "full") {
$fieldmap[$fieldname]['title'] = $arow['title'];
$fieldmap[$fieldname]['question'] = $arow['question'];
$fieldmap[$fieldname]['subquestion'] = gT('Comment');
$fieldmap[$fieldname]['subquestion1'] = gT('Comment');
$fieldmap[$fieldname]['subquestion'] =$abrow['question'];
$fieldmap[$fieldname]['group_name'] = $arow['group_name'];
$fieldmap[$fieldname]['mandatory'] = $arow['mandatory'];
$fieldmap[$fieldname]['hasconditions'] = $conditions;
Expand Down

0 comments on commit dfd334c

Please sign in to comment.