Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
06/01/2016 05:02:06 PM (8 years ago)
Author:
r-a-y
Message:

Blogs: Do not create a post comment if the related activity comment is marked as spam.

Props hnla, r-a-y.

Fixes #7107.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-blogs/bp-blogs-activity.php

    r10853 r10854  
    752752    }
    753753
     754    // Do not sync if the activity comment was marked as spam.
     755    $activity = new BP_Activity_Activity( $comment_id );
     756    if ( $activity->is_spam ) {
     757        return;
     758    }
     759
    754760    // Get userdata.
    755761    if ( $params['user_id'] == bp_loggedin_user_id() ) {
Note: See TracChangeset for help on using the changeset viewer.