Skip to content

Commit

Permalink
Fixed issue #8202: TSV-Export: relevance=name in x-scale of text/numb…
Browse files Browse the repository at this point in the history
…er matrix questions

Dev: only neccessary when using assessment values
  • Loading branch information
mfaber committed Sep 29, 2013
1 parent 6066836 commit 3b1bba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/expressions/em_manager_helper.php
Expand Up @@ -9144,7 +9144,7 @@ static public function &TSVSurveyExport($sid)
}
$row['type/scale'] = $_scale;
$row['name'] = $ansInfo[1];
$row['relevance'] = $valInfo[0]; // TODO - true? - what if it isn't an assessment value?
$row['relevance'] = $assessments==true ? $valInfo[0] : '';
$row['text'] = $valInfo[1];
$row['language'] = $lang;
$rows[] = $row;
Expand Down

0 comments on commit 3b1bba8

Please sign in to comment.