Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter useStrict

    (@usestrict)

    I fixed it myself. Please apply this change to your next version.

    function notify_new_reply($topic_id = 0, $forum_id = 0, $anonymous_data = false, $topic_author = 0)
    {
    	global $wpdb;
    
    	if (get_post_status($topic_id) == 'spam') return;
    
    	$opt_recipients = get_option('bbpress_notify_newreply_recipients');
    	$recipients = array();

    and

    function notify_new_topic($topic_id = 0, $forum_id = 0, $anonymous_data = false, $topic_author = 0)
    {
    	global $wpdb;
    
    	if (get_post_status($topic_id) == 'spam') return;
    
    	$opt_recipients = get_option('bbpress_notify_newtopic_recipients');
    	$recipients = array();
    Thread Starter useStrict

    (@usestrict)

    Very disappointed to see 0.2.1 come out without my changes above.

    I came here looking for this. Thanks. This is definitely should be added to the plugin.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: bbPress Notify] Being notified of spam comments’ is closed to new replies.