Skip to content

Commit

Permalink
Fixed issue #9087: XSS vulnerability
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Jun 16, 2014
1 parent 526e7bc commit acb8f3e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -43,7 +43,7 @@
}
else {
$surveyInfo = (array) explode('|', $_REQUEST['sid']);
$surveyid = $surveyInfo[0];
$surveyid = sanitize_int($surveyInfo[0]);
$thissurvey=getSurveyInfo($surveyid);
if (isset($_REQUEST['assessments']))
{
Expand Down

0 comments on commit acb8f3e

Please sign in to comment.