Skip to content

Commit

Permalink
Fixed Issue #7830: add question code to result of remote controls lis…
Browse files Browse the repository at this point in the history
…t_questions
  • Loading branch information
trougakoss authored and c-schmitz committed Jun 9, 2013
1 parent dbd305b commit 5964315
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/admin/remotecontrol.php
Expand Up @@ -1828,7 +1828,7 @@ public function list_questions($sSessionKey, $iSurveyID, $iGroupID=NULL, $sLangu

foreach ($aQuestionList as $oQuestion)
{
$aData[]= array('id'=>$oQuestion->primaryKey,'type'=>$oQuestion->attributes['type'], 'question'=>$oQuestion->attributes['question']);
$aData[]= array('id'=>$oQuestion->primaryKey,'title'=>$oQuestion->attributes['title'],'type'=>$oQuestion->attributes['type'], 'question'=>$oQuestion->attributes['question']);
}
return $aData;
}
Expand Down

0 comments on commit 5964315

Please sign in to comment.