Skip to:
Content

BuddyPress.org

Ticket #3231: 3231.diff

File 3231.diff, 1.6 KB (added by wpmuguru, 13 years ago)
  • bp-forums/bp-forums-admin.php

     
    182182
    183183        $file .= "\n" .   '$bb->custom_user_table = \'' . $wpdb->users . '\';';
    184184        $file .= "\n" .   '$bb->custom_user_meta_table = \'' . $wpdb->usermeta . '\';';
    185         $file .= "\n\n" . '$bb->uri = \'' . BP_PLUGIN_URL . '/bp-forums/bbpress/\';';
    186         $file .= "\n" .   '$bb->name = \'' . get_blog_option( BP_ROOT_BLOG, 'name' ) . ' ' . __( 'Forums', 'buddypress' ) . '\';';
    187 
    188         if ( is_multisite() )
    189                 $file .= "\n" .   '$bb->wordpress_mu_primary_blog_id = ' . BP_ROOT_BLOG . ';';
    190 
     185        $file .= "\n\n" . 'if( function_exists( \'bp_core_get_table_prefix\' ) && is_multisite() ) {';
     186        $file .= "\n\t" . '$bb_table_prefix = bp_core_get_table_prefix() . \'bb_\';';
     187        $file .= "\n\t" . '$bb->name = get_blog_option( BP_ROOT_BLOG, \'blogname\' ) . ' . '\' ' . __( 'Forums', 'buddypress' ) . '\';';
     188        $file .= "\n\t" . '$bb->uri = BP_PLUGIN_URL . \'/bp-forums/bbpress/\';';
     189        $file .= "\n\t" . '$current_site = get_current_site();';
     190        $file .= "\n\t" . '$bb->wordpress_mu_primary_blog_id = $current_site->blog_id;';
     191        $file .= "\n" .   '} else {';
     192        $file .= "\n\t" . '$bb->name = \'' . get_blog_option( BP_ROOT_BLOG, 'blogname' ) . ' ' . __( 'Forums', 'buddypress' ) . '\';';
     193        $file .= "\n\t" . '$bb->uri = \'' . BP_PLUGIN_URL . '/bp-forums/bbpress/\';';
     194        $file .= "\n" .   '}';
     195       
    191196        if ( defined( 'AUTH_SALT' ) )
    192197                $file .= "\n\n" . 'define(\'BB_AUTH_SALT\', \'' . addslashes( AUTH_SALT ) . '\');';
    193198