make contact messages strip slashes

This commit is contained in:
Dan Olson 2000-06-17 19:00:06 +00:00
parent 17bfc53e39
commit 9a482786f1

View file

@ -1,7 +1,7 @@
<? <?
if (isset($clicked)) { if (isset($clicked)) {
StripSlashes($message); StripSlashes($message);
mail("quake-user@lists.sourceforge.net", "Comments (Sent from www.quakeforge.net)", $message, "From: $sender\r\n"); mail("quake-user@lists.sourceforge.net", "Comments (Sent from www.quakeforge.net)", StripSlashes($message), "From: $sender\r\n");
header("Location: http://www.quakeforge.net/thanks.php"); header("Location: http://www.quakeforge.net/thanks.php");
exit; exit;
} }