diff --git src/bp-templates/bp-legacy/buddypress-functions.php src/bp-templates/bp-legacy/buddypress-functions.php
index 47bc605..c59816f 100644
|
|
function bp_legacy_theme_post_update() { |
719 | 719 | $activity_id = groups_post_update( array( 'content' => $_POST['content'], 'group_id' => $_POST['item_id'] ) ); |
720 | 720 | |
721 | 721 | } else { |
722 | | $activity_id = apply_filters( 'bp_activity_custom_update', $_POST['object'], $_POST['item_id'], $_POST['content'] ); |
| 722 | $activity_id = apply_filters( 'bp_activity_custom_update', false, $_POST['object'], $_POST['item_id'], $_POST['content'] ); |
723 | 723 | } |
724 | 724 | |
725 | 725 | if ( empty( $activity_id ) ) |