Skip to content

Commit

Permalink
Fixed issue #16650: Timing not recorded when exporting results
Browse files Browse the repository at this point in the history
Dev: Merge pull request #1595 from gabrieljenik/bug/16650--Timing-not-recorded-when-exporting-results
  • Loading branch information
olleharstedt committed Sep 21, 2020
2 parents 62702e8 + 6fa5df4 commit 5a8fe36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/admin/export/Writer.php
Expand Up @@ -298,7 +298,7 @@ final public function write(SurveyObj $oSurvey, $sLanguageCode, FormattingOption
foreach ($oSurvey->responses as $response) {
// prepare the data for decryption
$sTokenTableName='tokens_'.$oSurvey->id;
$aResponse = array();
$aResponse = $response;
if (tableExists($sTokenTableName)) {
$oToken = Token::model($oSurvey->id);
$oToken->setAttributes($response, false);
Expand Down

0 comments on commit 5a8fe36

Please sign in to comment.