From 22b416ef72d8884e4cf827a220a031a4fca6e0b0 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Tue, 8 Jan 2013 04:03:16 +0000 Subject: [PATCH] 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: https://develop.svn.wordpress.org/trunk@23294 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/pluggable.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index 69e2d330e7..09caf2f8fb 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -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;