Michael Sumner said 11 hours, 41 minutes ago:
Open the file mentioned, and replace this:
$group_ids = $this->get_group_ids( $user_id );
with this:
$group_ids = BP_Groups_Member::get_group_ids( $user_id );
And right below that, replace this:
foreach ( $group_ids->groups as $group_id ) {
with this:
foreach ( $group_ids as $group_id ) {
That fixed the issue for me.
@ shamus: Where location the file mentioned?
Is there going to be a 1.2.5.1 release with these little fixes in soon?
@ttuananh – bp-groups-classes.php
could you please post a TRAC-ticket regarding this issue ?
https://trac.buddypress.org/timeline
already in trac (see thread i posted above)
The fix that @shamus posted sort of worked for me…I still get the red error box if I try to delete a user from the front end, but I’m able to do it just fine from the admin panel.