Changeset 3358 for trunk/bp-core/admin/bp-core-upgrade.php
- Timestamp:
- 11/05/2010 09:44:38 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/bp-core/admin/bp-core-upgrade.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/admin/bp-core-upgrade.php
r3355 r3358 237 237 238 238 239 <?php if ( bp_core_is_multisite() ) : ?>239 <?php if ( is_multisite() ) : ?> 240 240 <div class="component"> 241 241 <h5><?php _e( "Blog Tracking", 'buddypress' ) ?></h5> … … 414 414 <?php endif; ?> 415 415 416 <?php if ( bp_core_is_multisite() && !isset( $disabled_components['bp-blogs.php'] ) ) : ?>416 <?php if ( is_multisite() && !isset( $disabled_components['bp-blogs.php'] ) ) : ?> 417 417 <tr valign="top"> 418 418 <th scope="row"> … … 914 914 915 915 /* Only install blog tables if this is a multisite installation */ 916 if ( bp_core_is_multisite() && empty( $disabled['bp-blogs.php'] ) )916 if ( is_multisite() && empty( $disabled['bp-blogs.php'] ) ) 917 917 bp_core_install_blog_tracking(); 918 918 } … … 939 939 940 940 // On first installation - record all existing blogs in the system. 941 if ( !(int)$bp->site_options['bp-blogs-first-install'] && bp_core_is_multisite() ) {941 if ( !(int)$bp->site_options['bp-blogs-first-install'] && is_multisite() ) { 942 942 bp_blogs_record_existing_blogs(); 943 943 add_site_option( 'bp-blogs-first-install', 1 ); 944 944 } 945 945 946 if ( bp_core_is_multisite() )946 if ( is_multisite() ) 947 947 bp_core_add_illegal_names(); 948 948
Note: See TracChangeset
for help on using the changeset viewer.