From 61e8f75faa1aabd30ba1b26e40f71f1b55d41e54 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Fri, 11 Nov 2005 02:00:06 +0000 Subject: [PATCH] Missed a line, fixes #1593 git-svn-id: https://develop.svn.wordpress.org/trunk@3048 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/pluggable-functions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wp-includes/pluggable-functions.php b/wp-includes/pluggable-functions.php index 9033392695..02d35205e1 100644 --- a/wp-includes/pluggable-functions.php +++ b/wp-includes/pluggable-functions.php @@ -300,6 +300,9 @@ function wp_notify_postauthor($comment_id, $comment_type='') { . "$from\n" . "Content-Type: text/plain; charset=\"" . get_settings('blog_charset') . "\"\n"; + if ( isset($reply_to) ) + $message_headers .= $reply_to . "\n"; + $notify_message = apply_filters('comment_notification_text', $notify_message); $subject = apply_filters('comment_notification_subject', $subject); $message_headers = apply_filters('comment_notification_headers', $message_headers);