From 848c24fee95383e6dfb37ecf62f656c5da694125 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Tue, 26 Jul 2011 13:29:56 -0400 Subject: [PATCH] email: allow comma and ampersand in subjects --- email.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/email.php b/email.php index 92cb6f0..c7ae44f 100644 --- a/email.php +++ b/email.php @@ -41,7 +41,7 @@ function email($from, $to, $subject, $message, $reply_to = '', $cc = '', $bcc = if($to == '') { return 2; } #FIXME should allow many more characters here - $subject = ereg_replace("[^a-zA-Z0-9 _#'.:-]", '_', $subject); + $subject = ereg_replace("[^a-zA-Z0-9 _#'.:&,-]", '_', $subject); $headers = "From: $from"; if($reply_to) { -- 1.7.10.4