• This line of code in notifications.php has a hard coded value for blog id.
    $subject = '[' . get_blog_option( 1 , 'blogname' ) . '] ' . sprintf( __( 'A document was uploaded to %s' , 'bp-group-documents' ) , $bp->groups->current_group->name ) ;

    If BuddyPress is not installed in blog 1, this code will return the wrong value.
    Using bp_get_root_blog_id() instead of 1 would address this problem.

The topic ‘Add support for multi-network installs.’ is closed to new replies.