Do not notify the post author about comments if they are no longer a member of the blog. props nickmomrick. fixes #23136

git-svn-id: http://core.svn.wordpress.org/trunk@23294 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Mark Jaquith 2013-01-08 04:03:16 +00:00
parent 1fa8476425
commit 2d6e677a03

View File

@ -991,6 +991,10 @@ function wp_notify_postauthor( $comment_id, $comment_type = '' ) {
$post = get_post( $comment->comment_post_ID );
$author = get_userdata( $post->post_author );
// The post author is no longer a member of the blog
if ( ! is_user_member_of_blog( $post->post_author ) )
return false;
// The comment was left by the author
if ( $comment->user_id == $post->post_author )
return false;