mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 09:37:42 +01:00
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:
parent
1fa8476425
commit
2d6e677a03
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user