Strip From/Reply-To from e-mail before sanitizing in wp-mail.php. Props Bobcat. fixes #5169
git-svn-id: http://svn.automattic.com/wordpress/trunk@6217 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
90da0b6561
commit
88735ac45a
|
@ -62,8 +62,8 @@ 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)) {
|
||||
$author = sanitize_email($line);
|
||||
if ( preg_match('/(From|Reply-To): /', $line) ) {
|
||||
$author = sanitize_email(preg_replace('/(From|Reply-To): /', '', $line));
|
||||
if ( is_email($author) ) {
|
||||
echo "Author = {$author} <p>";
|
||||
$author = $wpdb->escape($author);
|
||||
|
|
Loading…
Reference in New Issue