Added XSS prevention

This commit is contained in:
root 2008-11-24 12:50:09 +00:00
parent 790f59fa1a
commit d9951a9ddd

View file

@ -66,7 +66,7 @@
$row = mysql_fetch_assoc($res); $row = mysql_fetch_assoc($res);
$_REQUEST['userid'] = $row['id']; $_REQUEST['userid'] = $row['id'];
} else { } else {
printf(_("No users found matching %s"), $email); printf(_("No users found matching %s"), sanitizeHTML($email));
} }
} }