Changeset 4973
- Timestamp:
- 08/13/2011 05:56:27 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/admin/bp-core-admin.php
r4965 r4973 308 308 309 309 // An array of strings looped over to create component setup markup 310 $optional_components = a pply_filters( 'bp_admin_optional_components', array(310 $optional_components = array( 311 311 'xprofile' => array( 312 312 'title' => __( 'Extended Profiles', 'buddypress' ), … … 341 341 'description' => __( 'Make BuddyPress aware of new posts and new comments from your site.', 'buddypress' ) 342 342 ) 343 ) );343 ); 344 344 345 345 if ( is_multisite() ) … … 347 347 348 348 // Required components 349 $required_components = a pply_filters( 'bp_admin_required_components', array(349 $required_components = array( 350 350 'core' => array( 351 351 'title' => __( 'BuddyPress Core', 'buddypress' ), … … 356 356 'description' => __( 'Everything in a BuddyPress community revolves around its members.', 'buddypress' ) 357 357 ), 358 ) );358 ); 359 359 360 360 // On new install, set all components to be active by default … … 394 394 <?php endforeach ?> 395 395 396 <?php do_action( 'bp_active_external_components' ); ?>397 398 396 </tbody> 399 397 </table> … … 427 425 428 426 <?php endforeach ?> 429 430 <?php do_action( 'bp_active_external_components' ); ?>431 427 432 428 </tbody>
Note: See TracChangeset
for help on using the changeset viewer.