Skip to:
Content

BuddyPress.org

Changeset 2077 for trunk/bp-loader.php


Ignore:
Timestamp:
11/02/2009 07:54:21 PM (16 years ago)
Author:
apeatling
Message:

Merging 1.1 branch changes and syncing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-loader.php

    r2042 r2077  
    4040    include( BP_PLUGIN_DIR . '/bp-groups.php' );
    4141
    42 /* Private Messaging */ 
     42/* Private Messaging */
    4343if ( !isset( $deactivated['bp-messages.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-messages.php') )
    4444    include( BP_PLUGIN_DIR . '/bp-messages.php' );
    45    
     45
    4646/* Wire Support */
    4747if ( !isset( $deactivated['bp-wire.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-wire.php') )
    4848    include( BP_PLUGIN_DIR . '/bp-wire.php' );
    4949
    50 /* Extended Profiles */ 
     50/* Extended Profiles */
    5151if ( !isset( $deactivated['bp-xprofile.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-xprofile.php') )
    5252    include( BP_PLUGIN_DIR . '/bp-xprofile.php' );
    5353
    54 /* Status Updates */   
     54/* Status Updates */
    5555if ( !isset( $deactivated['bp-status.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-status.php') )
    5656    include( BP_PLUGIN_DIR . '/bp-status.php' );
Note: See TracChangeset for help on using the changeset viewer.