Changeset 11837 for trunk/src/bp-activity/bp-activity-functions.php
- Timestamp:
- 01/31/2018 02:37:23 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/bp-activity-functions.php
r11806 r11837 2621 2621 * 2622 2622 * @since 1.2.0 2623 * 2624 * @param string $r Content for the newly posted comment. 2625 */ 2626 $comment_content = apply_filters( 'bp_activity_comment_content', $r['content'] ); 2623 * @since 3.0.0 Added $context parameter to disambiguate from bp_get_activity_comment_content(). 2624 * 2625 * @param string $r Content for the newly posted comment. 2626 * @param string $context This filter's context ("new"). 2627 */ 2628 $comment_content = apply_filters( 'bp_activity_comment_content', $r['content'], 'new' ); 2627 2629 2628 2630 // Insert the activity comment.
Note: See TracChangeset
for help on using the changeset viewer.