Changeset 4965 for trunk/bp-core/admin/bp-core-update.php
- Timestamp:
- 08/11/2011 08:44:20 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/admin/bp-core-update.php
r4961 r4965 302 302 <th scope="row"> 303 303 <h5><?php _e( 'Sites', 'buddypress' ); ?></h5> 304 <p><?php _e( 'Displays individual groups as well as a directory of groups.', 'buddypress' ); ?></p>304 <p><?php _e( 'Displays a directory of the sites in your network.', 'buddypress' ); ?></p> 305 305 </th> 306 306 <td> … … 312 312 </table> 313 313 314 <p><?php _e( 'Would you like to enable site tracking, which tracks activity across all ofyour network?', 'buddypress' ); ?></p>314 <p><?php _e( 'Would you like to enable site tracking, which tracks blog posts and comments from across your network?', 'buddypress' ); ?></p> 315 315 316 316 <div class="left-col"> … … 428 428 <tr valign="top"> 429 429 <th scope="row"> 430 <h5><?php _e( 'Members', 'buddypres ' ); ?></h5>430 <h5><?php _e( 'Members', 'buddypress' ); ?></h5> 431 431 <p><?php _e( 'Displays member profiles, and a directory of all site members.', 'buddypress' ); ?></p> 432 432 </th> … … 472 472 <th scope="row"> 473 473 <h5><?php _e( 'Forums', 'buddypress' ); ?></h5> 474 <p><?php _e( 'Displays individual groups as well as a directory of groups.', 'buddypress' ); ?></p>474 <p><?php _e( 'Displays a directory of public forum topics.', 'buddypress' ); ?></p> 475 475 </th> 476 476 <td> … … 482 482 <?php endif; ?> 483 483 484 <?php /* The Blogs component only needs a directory page when Multisite is enabled */ ?> 484 485 <?php if ( is_multisite() && isset( $active_components['blogs'] ) ) : ?> 485 486 … … 487 488 <th scope="row"> 488 489 <h5><?php _e( 'Sites', 'buddypress' ); ?></h5> 489 <p><?php _e( 'Displays individual groups as well as a directory of groups.', 'buddypress' ); ?></p>490 <p><?php _e( 'Displays a directory of the sites in your network.', 'buddypress' ); ?></p> 490 491 </th> 491 492 <td> … … 1023 1024 if ( !function_exists( 'bp_core_update_message' ) ) 1024 1025 require( WP_PLUGIN_DIR . '/buddypress/bp-core/admin/bp-core-admin.php' ); 1026 1025 1027 bp_core_add_admin_menu(); 1026 1028 … … 1110 1112 bp_core_install_extended_profiles(); 1111 1113 1112 // Only install blog tables if this is a multisite installation1113 if ( is_multisite() &&!empty( $active_components['blogs'] ) )1114 // Blog tracking 1115 if ( !empty( $active_components['blogs'] ) ) 1114 1116 bp_core_install_blog_tracking(); 1115 1117 } … … 1137 1139 1138 1140 // On first installation - record all existing blogs in the system. 1139 if ( !(int)$bp->site_options['bp-blogs-first-install'] && is_multisite()) {1141 if ( !(int)$bp->site_options['bp-blogs-first-install'] ) { 1140 1142 bp_blogs_record_existing_blogs(); 1141 1143 bp_update_option( 'bp-blogs-first-install', 1 );
Note: See TracChangeset
for help on using the changeset viewer.