Changeset 2742
- Timestamp:
- 02/18/2010 06:50:35 PM (16 years ago)
- Location:
- branches/1.2
- Files:
-
- 8 edited
-
bp-activity.php (modified) (1 diff)
-
bp-blogs.php (modified) (1 diff)
-
bp-core.php (modified) (2 diffs)
-
bp-friends.php (modified) (1 diff)
-
bp-groups.php (modified) (1 diff)
-
bp-loader.php (modified) (1 diff)
-
bp-messages.php (modified) (1 diff)
-
bp-xprofile.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/bp-activity.php
r2738 r2742 94 94 global $wpdb, $bp; 95 95 96 if ( $bp->site_options['bp-activity-db-version']< BP_ACTIVITY_DB_VERSION )96 if ( get_site_option( 'bp-activity-db-version' ) < BP_ACTIVITY_DB_VERSION ) 97 97 bp_activity_install(); 98 98 } -
branches/1.2/bp-blogs.php
r2738 r2742 81 81 if ( is_site_admin() && bp_core_is_multisite() ) { 82 82 /* Need to check db tables exist, activate hook no-worky in mu-plugins folder. */ 83 if ( $bp->site_options['bp-blogs-db-version']< BP_BLOGS_DB_VERSION )83 if ( get_site_option( 'bp-blogs-db-version' ) < BP_BLOGS_DB_VERSION ) 84 84 bp_blogs_install(); 85 85 } -
branches/1.2/bp-core.php
r2738 r2742 267 267 268 268 /* Need to check db tables exist, activate hook no-worky in mu-plugins folder. */ 269 if ( $bp->site_options['bp-core-db-version']< BP_CORE_DB_VERSION )269 if ( get_site_option( 'bp-core-db-version' ) < BP_CORE_DB_VERSION ) 270 270 bp_core_install(); 271 271 } … … 1560 1560 1561 1561 $options = apply_filters( 'bp_core_site_options', array( 1562 'bp-core-db-version',1563 'bp-activity-db-version',1564 'bp-blogs-db-version',1565 'bp-friends-db-version',1566 'bp-groups-db-version',1567 'bp-messages-db-version',1568 'bp-xprofile-db-version',1569 1562 'bp-deactivated-components', 1570 1563 'bp-blogs-first-install', -
branches/1.2/bp-friends.php
r2738 r2742 57 57 58 58 /* Need to check db tables exist, activate hook no-worky in mu-plugins folder. */ 59 if ( $bp->site_options['bp-friends-db-version']< BP_FRIENDS_DB_VERSION )59 if ( get_site_option( 'bp-friends-db-version' ) < BP_FRIENDS_DB_VERSION ) 60 60 friends_install(); 61 61 } -
branches/1.2/bp-groups.php
r2738 r2742 109 109 function groups_check_installed() { 110 110 /* Need to check db tables exist, activate hook no-worky in mu-plugins folder. */ 111 if ( $bp->site_options['bp-groups-db-version']< BP_GROUPS_DB_VERSION )111 if ( get_site_option( 'bp-groups-db-version' ) < BP_GROUPS_DB_VERSION ) 112 112 groups_install(); 113 113 } -
branches/1.2/bp-loader.php
r2731 r2742 22 22 do_action( 'bp_core_loaded' ); 23 23 24 / * Activity Streams */25 if ( !isset( $bp_deactivated['bp-activity.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-activity.php') )26 include( BP_PLUGIN_DIR . '/bp-activity.php' );24 // /* Activity Streams */ 25 // if ( !isset( $bp_deactivated['bp-activity.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-activity.php') ) 26 // include( BP_PLUGIN_DIR . '/bp-activity.php' ); 27 27 28 / * Blog Tracking */29 if ( !isset( $bp_deactivated['bp-blogs.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-blogs.php') )30 include( BP_PLUGIN_DIR . '/bp-blogs.php' );28 // /* Blog Tracking */ 29 // if ( !isset( $bp_deactivated['bp-blogs.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-blogs.php') ) 30 // include( BP_PLUGIN_DIR . '/bp-blogs.php' ); 31 31 32 / * bbPress Forum Integration */33 if ( !isset( $bp_deactivated['bp-forums.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-forums.php') )34 include( BP_PLUGIN_DIR . '/bp-forums.php' );32 // /* bbPress Forum Integration */ 33 // if ( !isset( $bp_deactivated['bp-forums.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-forums.php') ) 34 // include( BP_PLUGIN_DIR . '/bp-forums.php' ); 35 35 36 / * Friend Connections */37 if ( !isset( $bp_deactivated['bp-friends.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-friends.php') )38 include( BP_PLUGIN_DIR . '/bp-friends.php' );36 // /* Friend Connections */ 37 // if ( !isset( $bp_deactivated['bp-friends.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-friends.php') ) 38 // include( BP_PLUGIN_DIR . '/bp-friends.php' ); 39 39 40 40 /* Groups Support */ -
branches/1.2/bp-messages.php
r2738 r2742 92 92 93 93 /* Need to check db tables exist, activate hook no-worky in mu-plugins folder. */ 94 if ( $bp->site_options['bp-messages-db-version']< BP_MESSAGES_DB_VERSION )94 if ( get_site_option( 'bp-messages-db-version' ) < BP_MESSAGES_DB_VERSION ) 95 95 messages_install(); 96 96 } -
branches/1.2/bp-xprofile.php
r2738 r2742 156 156 157 157 /* Need to check db tables exist, activate hook no-worky in mu-plugins folder. */ 158 if ( $bp->site_options['bp-xprofile-db-version']< BP_XPROFILE_DB_VERSION )158 if ( get_site_option( 'bp-xprofile-db-version' ) < BP_XPROFILE_DB_VERSION ) 159 159 xprofile_install(); 160 160 }
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)