I’m using wpmu 2.9.1.1 and bp 1.1.3. The plugin (1.3.1) works correctly. The only thing is the “latest topics” display. The links to topics are wrong.
Change lines 120 & 121 in themes/bp-groupblog/home.php
Replace
<a class="topic-avatar" href="<?php bp_the_topic_permalink() ?>" title="<?php bp_the_topic_title() ?> - <?php _e( 'Permalink', 'buddypress' ) ?>"><?php bp_the_topic_last_poster_avatar( 'width=30&height=30')?></a>
<a class="topic-title" href="<?php bp_the_topic_permalink() ?>" title="<?php bp_the_topic_title() ?> - <?php _e( 'Permalink', 'buddypress' ) ?>"><?php bp_the_topic_title() ?></a>
by
<a class="topic-avatar" href="<?php bp_group_forum_permalink() ?>/topic/<?php bp_the_topic_slug() ?>" title="<?php bp_the_topic_title() ?> - <?php _e( 'Permalink', 'buddypress' ) ?>"><?php bp_the_topic_last_poster_avatar( 'width=30&height=30') ?></a>
<a class="topic-title" href="<?php bp_group_forum_permalink() ?>/topic/<?php bp_the_topic_slug() ?>" title="<?php bp_the_topic_title() ?> - <?php _e( 'Permalink', 'buddypress' ) ?>"><?php bp_the_topic_title() ?></a>
dan
https://buddypress-fr.net/bpdemo/