Skip to:
Content

bbPress.org


Ignore:
Timestamp:
07/04/2017 05:43:05 PM (9 years ago)
Author:
johnjamesjacoby
Message:

Subscriptions: Include closed status in subscription triggers.

This change allows activity in closed topics to trigger subscription emails. It also fully implements bbp_get_subscribers() completing the deprecation of topic/forum specific handlers.

Fixes #2729.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/metaboxes.php

    r6573 r6616  
    746746
    747747    // Get user IDs
    748     $user_ids = bbp_get_topic_subscribers( $post->ID );
     748    $user_ids = bbp_get_subscribers( $post->ID );
    749749
    750750    // Output
     
    782782
    783783    // Get user IDs
    784     $user_ids = bbp_get_forum_subscribers( $post->ID );
     784    $user_ids = bbp_get_subscribers( $post->ID );
    785785
    786786    // Output
Note: See TracChangeset for help on using the changeset viewer.