mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-27 22:42:57 +00:00
make contact messages strip slashes
This commit is contained in:
parent
17bfc53e39
commit
9a482786f1
1 changed files with 45 additions and 45 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue