Changeset 5396
- Timestamp:
- 05/05/2007 02:51:20 AM (18 years ago)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/wp-mail.php
r3475 r5396 59 59 // Set the author using the email address (To or Reply-To, the last used) 60 60 // otherwise use the site admin 61 if (preg_match('/From: /', $line) | preg_match(' Reply-To: /', $line)) {61 if (preg_match('/From: /', $line) | preg_match('/Reply-To: /', $line)) { 62 62 $author=trim($line); 63 63 if ( ereg("([a-zA-Z0-9\_\-\.]+@[\a-zA-z0-9\_\-\.]+)", $author , $regs) ) { -
branches/2.2/wp-mail.php
r5188 r5396 63 63 // Set the author using the email address (To or Reply-To, the last used) 64 64 // otherwise use the site admin 65 if (preg_match('/From: /', $line) | preg_match(' Reply-To: /', $line)) {65 if (preg_match('/From: /', $line) | preg_match('/Reply-To: /', $line)) { 66 66 $author=trim($line); 67 67 if ( ereg("([a-zA-Z0-9\_\-\.]+@[\a-zA-z0-9\_\-\.]+)", $author , $regs) ) { -
trunk/wp-mail.php
r5188 r5396 63 63 // Set the author using the email address (To or Reply-To, the last used) 64 64 // otherwise use the site admin 65 if (preg_match('/From: /', $line) | preg_match(' Reply-To: /', $line)) {65 if (preg_match('/From: /', $line) | preg_match('/Reply-To: /', $line)) { 66 66 $author=trim($line); 67 67 if ( ereg("([a-zA-Z0-9\_\-\.]+@[\a-zA-z0-9\_\-\.]+)", $author , $regs) ) {
Note: See TracChangeset
for help on using the changeset viewer.