Skip to content

Commit

Permalink
Fixed issue #6838: RemoteControl export_responses returns an error
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Nov 8, 2012
1 parent 13add80 commit 7bb8660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/admin/remotecontrol.php
Expand Up @@ -2261,7 +2261,7 @@ public function export_responses($sSessionKey, $iSurveyID, $sDocumentType, $sLan
$oFomattingOptions->answerFormat=$sResponseType;
$oFomattingOptions->output='return';
$oExport=new ExportSurveyResultsService();
$sFileData=$oExport->exportSurvey($iSurveyID,$sLanguageCode, $sDocumentType,$oFomattingOptions,'return');
$sFileData=$oExport->exportSurvey($iSurveyID,$sLanguageCode, $sDocumentType,$oFomattingOptions);
return base64_encode($sFileData);
}

Expand Down

0 comments on commit 7bb8660

Please sign in to comment.