Changeset 12355
- Timestamp:
- 03/08/2019 03:28:53 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/actions/post.php
r11885 r12355 78 78 * 79 79 * @since 1.2.0 80 * @since 5.0.0 Fixed filter signature to match other instances of filter, 81 * with $activity_id as the first param. 80 82 * 81 * @param string $object Activity item being associated to. 82 * @param string $item_id Component ID being posted to. 83 * @param string $content Activity content being posted. 83 * @param int $activity_id ID of the activity item. 84 * @param string $object Activity item being associated to. 85 * @param string $item_id Component ID being posted to. 86 * @param string $content Activity content being posted. 84 87 */ 85 $activity_id = apply_filters( 'bp_activity_custom_update', $object, $item_id, $content );88 $activity_id = apply_filters( 'bp_activity_custom_update', 0, $object, $item_id, $content ); 86 89 } 87 90
Note: See TracChangeset
for help on using the changeset viewer.