From: Jason Woofenden Date: Tue, 19 Apr 2011 20:32:24 +0000 (-0400) Subject: allow # in email subjects X-Git-Url: https://jasonwoof.com/gitweb/?a=commitdiff_plain;h=554b3215eda9d33d86b8bd30df28e02eabb89ae7;hp=ac57c47c8fe57b2d0c8b3a305898e3e4642176ae;p=wfpl.git allow # in email subjects --- diff --git a/email.php b/email.php index 585f97f..92cb6f0 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) {