X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=email.php;h=65c71c38f89725976eb7b7964e8521ff6e96ba27;hb=56892b42cb4895e601c8de375d833806772673e9;hp=946edf2ec8626ac50e4491af0f7705833a39c015;hpb=7a16207b28e113674dfc56846c2971086b34cd0e;p=wfpl.git diff --git a/email.php b/email.php index 946edf2..65c71c3 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) { @@ -90,7 +90,7 @@ function email_header($addr) { } #FIXME should allow many more characters here - $name = ereg_replace("[^a-zA-Z0-9 _'.-]", '_', $name); + $name = ereg_replace("[^a-zA-Z0-9 _/'.-]", '_', $name); return $name . ' <' . $email . '>'; }