diff --git a/src/wp-includes/pluggable.php b/src/wp-includes/pluggable.php
index 3b81242f4d..418973ea92 100644
a
|
b
|
function wp_notify_postauthor( $comment_id, $deprecated = null ) { |
1602 | 1602 | $notify_message .= sprintf( __( 'Email: %s' ), $comment->comment_author_email ) . "\r\n"; |
1603 | 1603 | /* translators: %s: Trackback/pingback/comment author URL. */ |
1604 | 1604 | $notify_message .= sprintf( __( 'URL: %s' ), $comment->comment_author_url ) . "\r\n"; |
| 1605 | if ( 0 !== $comment->comment_parent ) { |
| 1606 | /* translators: Comment parent. 1: Comment parent URL */ |
| 1607 | $notify_message .= sprintf( __( 'In reply to: %s' ), admin_url( "comment.php?action=editcomment&c={$comment->comment_parent}" ) ) . "\r\n"; |
| 1608 | } |
1605 | 1609 | /* translators: %s: Comment text. */ |
1606 | 1610 | $notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n"; |
1607 | 1611 | $notify_message .= __( 'You can see all comments on this post here:' ) . "\r\n"; |