Skip to content

Commit 489b809

Browse files
authored
Fixed wrong var name in remotecontrol_handle.php
1 parent 35b21f3 commit 489b809

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)