mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 15:22:13 +00:00
Add calls to StripSlashes() for the sent email.
This commit is contained in:
parent
003716271d
commit
b306bf2aab
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ if ($pkg && $version && $severity && $os && $details && $subj) {
|
|||
echo "To: <TT>$address</TT><BR>\n";
|
||||
echo 'Subject: <TT>' . StripSlashes($subj) . '</TT><br>';
|
||||
echo '<pre>' . StripSlashes ($mail) . '</pre>';
|
||||
mail ($address, $subj, $mail, "From: \"Bug-Submission Form\" <$address>");
|
||||
mail ($address, StripSlashes ($subj), StripSlashes ($mail), "From: \"Bug-Submission Form\" <$address>");
|
||||
echo '<P>Bug report sent!</P>';
|
||||
} else {
|
||||
?><P><STRONG>Note:</STRONG> All fields <STRONG>must</STRONG> be filled in.</P><FORM name="bug" method="post"><table><?
|
||||
|
|
Loading…
Reference in a new issue