Skip to content

Commit

Permalink
Fixed issue #11407: Less than sign ( < ) is not displayed properly in…
Browse files Browse the repository at this point in the history
… "list dropdown" question type.
  • Loading branch information
LouisGac committed Jun 21, 2016
1 parent 6cae933 commit edb9165
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/qanda_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -1254,7 +1254,7 @@ function do_list_dropdown($ia)
$sOptions .= doRender('/survey/questions/list_dropdown/rows/option', array(
'value'=>$ansrow['code'],
'opt_select'=>$opt_select,
'answer'=>flattenText($_prefix.$ansrow['answer'])
'answer'=>$_prefix.$ansrow['answer'],
), true);
}
}
Expand Down

0 comments on commit edb9165

Please sign in to comment.