diff --git wp-includes/pluggable.php wp-includes/pluggable.php
index 32fab32..7d9f896 100644
|
|
function wp_notify_moderator($comment_id) { |
1658 | 1658 | $notify_message .= sprintf( __( 'URL: %s' ), $comment->comment_author_url ) . "\r\n"; |
1659 | 1659 | /* translators: 1: Comment text */ |
1660 | 1660 | $notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n"; |
| 1661 | if ( 0 !== $comment->comment_parent ) { |
| 1662 | /* translators: Comment parent. 1: Comment parent URL */ |
| 1663 | $notify_message .= sprintf( __( 'In reply to: %s' ), admin_url( "comment.php?action=editcomment&c={$comment->comment_parent}" ) ) . "\r\n"; |
| 1664 | } |
1661 | 1665 | break; |
1662 | 1666 | } |
1663 | 1667 | |