Changeset 6515
- Timestamp:
- 06/10/2017 07:19:27 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/users/engagements.php
r6493 r6515 203 203 204 204 // Filter & return 205 return (bool) apply_filters( 'bbp_is_user_engaged', (bool)$retval, $user_id, $topic_id );205 return (bool) apply_filters( 'bbp_is_user_engaged', $retval, $user_id, $topic_id ); 206 206 } 207 207 … … 400 400 401 401 // Filter & return 402 return (bool) apply_filters( 'bbp_is_user_favorite', (bool)$retval, $user_id, $topic_id, $favorites );402 return (bool) apply_filters( 'bbp_is_user_favorite', $retval, $user_id, $topic_id, $favorites ); 403 403 } 404 404 … … 765 765 * @uses bbp_get_topic_post_type() To get the topic post type 766 766 * @uses apply_filters() Calls 'bbp_is_user_subscribed' with the bool, user id, 767 * forum/topic id and subs riptions767 * forum/topic id and subscriptions 768 768 * @return bool True if the forum or topic is in user's subscriptions, otherwise false 769 769 */ … … 862 862 863 863 // Filter & return 864 return (bool) apply_filters( 'bbp_is_user_subscribed_to_forum', (bool)$retval, $user_id, $forum_id, $subscribed_ids );864 return (bool) apply_filters( 'bbp_is_user_subscribed_to_forum', $retval, $user_id, $forum_id, $subscribed_ids ); 865 865 } 866 866 … … 920 920 921 921 // Filter & return 922 return (bool) apply_filters( 'bbp_is_user_subscribed_to_topic', (bool)$retval, $user_id, $topic_id, $subscribed_ids );922 return (bool) apply_filters( 'bbp_is_user_subscribed_to_topic', $retval, $user_id, $topic_id, $subscribed_ids ); 923 923 } 924 924
Note: See TracChangeset
for help on using the changeset viewer.