From 2ca5ffceea3960e83dbad30fd3835c08f5fff575 Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 30 Mar 2005 05:45:30 +0000 Subject: [PATCH] Accidentally dropped admin_email var. http://mosquito.wordpress.org/view.php?id=1190 Props: MtDewVirus git-svn-id: http://svn.automattic.com/wordpress/trunk@2498 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/comment-functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/comment-functions.php b/wp-includes/comment-functions.php index f5967a274f..b6cbbcc7da 100644 --- a/wp-includes/comment-functions.php +++ b/wp-includes/comment-functions.php @@ -705,6 +705,7 @@ function wp_notify_moderator($comment_id) { $notify_message .= get_settings('siteurl') . "/wp-admin/moderation.php\r\n"; $subject = sprintf( __('[%1$s] Please moderate: "%2$s"'), get_settings('blogname'), $post->post_title ); + $admin_email = get_settings("admin_email"); @wp_mail($admin_email, $subject, $notify_message);