From b972383f1c6e295926222f2c89bdf0f9cec88064 Mon Sep 17 00:00:00 2001 From: rob1n Date: Sat, 5 May 2007 02:51:20 +0000 Subject: [PATCH] Add in missing delimiter. fixes #4226 for 2.0, 2.2 and 2.3 git-svn-id: https://develop.svn.wordpress.org/trunk@5396 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-mail.php b/wp-mail.php index 3e1551ce77..8795c74f4f 100644 --- a/wp-mail.php +++ b/wp-mail.php @@ -62,7 +62,7 @@ for ($i=1; $i <= $count; $i++) : // Set the author using the email address (To or Reply-To, the last used) // otherwise use the site admin - if (preg_match('/From: /', $line) | preg_match('Reply-To: /', $line)) { + if (preg_match('/From: /', $line) | preg_match('/Reply-To: /', $line)) { $author=trim($line); if ( ereg("([a-zA-Z0-9\_\-\.]+@[\a-zA-z0-9\_\-\.]+)", $author , $regs) ) { $author = $regs[1];