Hi Boone,
Well... In fact this is not fully satisfactory, from an intellectual point of view, but it seems moving the following code to the very end of the file (before the closing php mark, of course... ;) ) makes it run like a charm.
if ( defined( 'BP_VERSION' ) && version_compare( BP_VERSION, '1.5-beta-1', '<' ) ) {
// Pre-1.5 versions of BuddyPress
// Load the abstraction files, which define the necessary 1.5 functions
require_once( dirname( __FILE__ ) . '/1.5-abstraction.php' );
// Load the group extension in the legacy fashion
add_action( 'init', 'ass_activate_extension' );
} else {
// Load the group extension in the proper fashion
bp_register_group_extension( 'Group_Activity_Subscription' );
}
Would you mind making this change on the thunk version ?
Best regards,
Yann