Skip to content

Commit

Permalink
Fixed issue #10841: Prefilling a survey using GET parameters
Browse files Browse the repository at this point in the history
.= should be =
  • Loading branch information
olleharstedt committed Mar 31, 2016
1 parent 112780e commit c0b3fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/qanda_helper.php
Expand Up @@ -3382,7 +3382,7 @@ function do_shortfreetext($ia)
{
$dispVal = str_replace('.',$sSeparator,$dispVal);
}
$dispVal .= htmlspecialchars($dispVal);
$dispVal = htmlspecialchars($dispVal);
}

$itemDatas = array(
Expand Down

0 comments on commit c0b3fdf

Please sign in to comment.