Skip to content

Commit

Permalink
Formatting cleanups from johnjosephbachir. fixes #4775
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.automattic.com/wordpress/trunk@5901 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
ryan committed Aug 19, 2007
1 parent 04558f4 commit 645bbfa
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions wp-mail.php
Expand Up @@ -64,17 +64,17 @@
// otherwise use the site admin
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];
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 ( ereg("([a-zA-Z0-9\_\-\.]+@[\a-zA-z0-9\_\-\.]+)", $author , $regs) ) {
$author = $regs[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)
$post_author = 1;
else
$post_author = $result->ID;
} else
$post_author = 1;
else
$post_author = $result->ID;
} else
$post_author = 1;
}

if (preg_match('/Date: /i', $line)) { // of the form '20 Mar 2002 20:32:37'
Expand Down

0 comments on commit 645bbfa

Please sign in to comment.