wp-mail quote escaping fix from majelbstoat. fixes #2209
git-svn-id: http://svn.automattic.com/wordpress/trunk@3475 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6a4f2fbec8
commit
7310346328
|
@ -61,8 +61,10 @@ for ($i=1; $i <= $count; $i++) :
|
||||||
if (preg_match('/From: /', $line) | preg_match('Reply-To: /', $line)) {
|
if (preg_match('/From: /', $line) | preg_match('Reply-To: /', $line)) {
|
||||||
$author=trim($line);
|
$author=trim($line);
|
||||||
if ( ereg("([a-zA-Z0-9\_\-\.]+@[\a-zA-z0-9\_\-\.]+)", $author , $regs) ) {
|
if ( ereg("([a-zA-Z0-9\_\-\.]+@[\a-zA-z0-9\_\-\.]+)", $author , $regs) ) {
|
||||||
echo "Author = {$regs[1]} <p>";
|
$author = $regs[1];
|
||||||
$result = $wpdb->get_row("SELECT ID FROM $tableusers WHERE user_email='$regs[1]' ORDER BY ID DESC LIMIT 1");
|
echo "Author = {$author} <p>";
|
||||||
|
$author = $wpdb->escape($author);
|
||||||
|
$result = $wpdb->get_row("SELECT ID FROM $wpdb->users WHERE user_email='$author' LIMIT 1");
|
||||||
if (!$result)
|
if (!$result)
|
||||||
$post_author = 1;
|
$post_author = 1;
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue