Skip to content

Commit

Permalink
Fixed issue #06075: Content of previous answer is not replaced, inste…
Browse files Browse the repository at this point in the history
…ad placeholder of selected answer is shown: eg. {TOKEN:ATTRIBUTE_2}

Dev exception when trying to replace token value
  • Loading branch information
TMSWhite committed May 9, 2012
1 parent 1415efd commit edddf31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/expressions/em_manager_helper.php
Expand Up @@ -2357,7 +2357,7 @@ private function setVariableAndTokenMappingsForExpressionManager($surveyid,$forc
//Gather survey data for tokenised surveys, for use in presenting questions
$_SESSION[$this->sessid]['thistoken']=getTokenData($surveyid, $_SESSION[$this->sessid]['token']);
$this->knownVars['TOKEN:TOKEN'] = array(
'code'=>$_SESSION['token'],
'code'=>$_SESSION[$this->sessid]['token'],
'jsName_on'=>'',
'jsName'=>'',
'readWrite'=>'N',
Expand Down

0 comments on commit edddf31

Please sign in to comment.