Changeset 2077 for trunk/bp-loader.php
- Timestamp:
- 11/02/2009 07:54:21 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/bp-loader.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-loader.php
r2042 r2077 40 40 include( BP_PLUGIN_DIR . '/bp-groups.php' ); 41 41 42 /* Private Messaging */ 42 /* Private Messaging */ 43 43 if ( !isset( $deactivated['bp-messages.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-messages.php') ) 44 44 include( BP_PLUGIN_DIR . '/bp-messages.php' ); 45 45 46 46 /* Wire Support */ 47 47 if ( !isset( $deactivated['bp-wire.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-wire.php') ) 48 48 include( BP_PLUGIN_DIR . '/bp-wire.php' ); 49 49 50 /* Extended Profiles */ 50 /* Extended Profiles */ 51 51 if ( !isset( $deactivated['bp-xprofile.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-xprofile.php') ) 52 52 include( BP_PLUGIN_DIR . '/bp-xprofile.php' ); 53 53 54 /* Status Updates */ 54 /* Status Updates */ 55 55 if ( !isset( $deactivated['bp-status.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-status.php') ) 56 56 include( BP_PLUGIN_DIR . '/bp-status.php' );
Note: See TracChangeset
for help on using the changeset viewer.