Changeset 8393 for trunk/bp-loader.php
- Timestamp:
- 05/07/2014 12:08:23 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/bp-loader.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-loader.php
r8363 r8393 1 1 <?php 2 2 3 /** 3 4 * The BuddyPress Plugin … … 28 29 29 30 // Load from source if no build exists 30 if ( ! file_exists( $bp_loader ) || defined( 'BP_LOAD_S AUCE' ) ) {31 if ( ! file_exists( $bp_loader ) || defined( 'BP_LOAD_SOURCE' ) ) { 31 32 $bp_loader = __DIR__ . '/src/bp-loader.php'; 32 33 } 33 34 35 // Include BuddyPress 34 36 include( $bp_loader ); 37 38 // Unset the loader, since it's loaded in global scope 35 39 unset( $bp_loader );
Note: See TracChangeset
for help on using the changeset viewer.