Skip to content

Commit

Permalink
Fixed issue #5399: Cannot add conditions after certain point in the s…
Browse files Browse the repository at this point in the history
…urvey

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey@10748 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Aug 16, 2011
1 parent bf6b33c commit 84e483f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/conditionshandling.php
Expand Up @@ -1082,10 +1082,10 @@
{
foreach($canswers as $can)
{
$an=FlattenText($can[2]);
$an=json_encode(FlattenText($can[2]));
$conditionsoutput_main_content .= "Fieldnames[$jn]='$can[0]';\n"
."Codes[$jn]='$can[1]';\n"
."Answers[$jn]='$an';\n";
."Answers[$jn]={$an};\n";
$jn++;
}
}
Expand Down

0 comments on commit 84e483f

Please sign in to comment.