From 331257f4feb22ee2e0b820c25a477558862c7367 Mon Sep 17 00:00:00 2001 From: donncha Date: Fri, 17 Sep 2004 10:26:34 +0000 Subject: [PATCH] Check for moderation_notify flag before notifying moderator that about held comments. git-svn-id: http://svn.automattic.com/wordpress/trunk@1678 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 49033e263..52e637892 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -927,6 +927,9 @@ function wp_notify_postauthor($comment_id, $comment_type='comment') { function wp_notify_moderator($comment_id) { global $wpdb; global $querystring_start, $querystring_equal, $querystring_separator; + + if( get_settings( "moderation_notify" ) == 0 ) + return true; $comment = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID='$comment_id' LIMIT 1"); $post = $wpdb->get_row("SELECT * FROM $wpdb->posts WHERE ID='$comment->comment_post_ID' LIMIT 1"); @@ -1612,4 +1615,4 @@ function the_post() { start_wp(true); } -?> \ No newline at end of file +?>