Changeset 13221
- Timestamp:
- 01/24/2022 09:23:23 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/10.0/src/bp-templates/bp-nouveau/includes/activity/ajax.php
r13114 r13221 553 553 $status = $bp->groups->current_group->status; 554 554 } else { 555 $group = groups_get_group( array( 'group_id' => $ group_id ) );555 $group = groups_get_group( array( 'group_id' => $item_id ) ); 556 556 $status = $group->status; 557 557 } … … 581 581 } 582 582 } 583 $ac ivity = ob_get_contents();583 $activity = ob_get_contents(); 584 584 ob_end_clean(); 585 585 … … 587 587 'id' => $activity_id, 588 588 'message' => esc_html__( 'Update posted.', 'buddypress' ) . ' ' . sprintf( '<a href="%s" class="just-posted">%s</a>', esc_url( bp_activity_get_permalink( $activity_id ) ), esc_html__( 'View activity.', 'buddypress' ) ), 589 'activity' => $ac ivity,589 'activity' => $activity, 590 590 591 591 /**
Note: See TracChangeset
for help on using the changeset viewer.