Skip to content

Commit c3eb8eb

Browse files
authored
Merge pull request #2 from nubisware/master
fix in variable name
2 parents e7f052d + 489b809 commit c3eb8eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

application/helpers/remotecontrol/remotecontrol_handle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3573,7 +3573,7 @@ public function export_responses_by_token($sSessionKey, $iSurveyID, $sDocumentTy
35733573
$tokenFilter = " IN (" . implode(",", $aTokensQuoted) . ")";
35743574
}
35753575
} else {
3576-
if (!SurveyDynamic::model($iSurveyID)->findByAttributes(array('token' => $sToken))) {
3576+
if (!SurveyDynamic::model($iSurveyID)->findByAttributes(array('token' => $aTokens))) {
35773577
return array('status' => 'No Response found for Token');
35783578
}
35793579
$tokenFilter = "=" . App()->db->quoteValue("$aTokens");

0 commit comments

Comments
 (0)