From de46375cdc604ac20299ba4a46329d8169321b8c Mon Sep 17 00:00:00 2001 From: Jeff Teunissen Date: Thu, 29 Aug 2002 18:46:46 +0000 Subject: [PATCH] Grrrr. The web site should now be sending webform requests to the actual mailing list. --- contact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contact.php b/contact.php index 7502033..7595408 100644 --- a/contact.php +++ b/contact.php @@ -6,7 +6,7 @@ if (!$subject) $subject = "No subject!"; - mail ("quakeforge-user@lists.quakeforge.net", StripSlashes ($subject), StripSlashes ($message), "From: $sender\r\nReply-To: $sender\r\n"); + mail ("quakeforge-users@lists.quakeforge.net", StripSlashes ($subject), StripSlashes ($message), "From: $sender\r\nReply-To: $sender\r\n"); header ("Location: http://www.quakeforge.net/thanks.php"); exit; }