Changeset 4820
- Timestamp:
- 07/23/2011 06:09:57 PM (14 years ago)
- Location:
- trunk/bp-core
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/admin/bp-core-admin.php
r4816 r4820 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 /** -
trunk/bp-core/admin/bp-core-schema.php
r4794 r4820 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 function bp_core_set_charset() { -
trunk/bp-core/admin/bp-core-update.php
r4816 r4820 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 class BP_Core_Setup_Wizard { -
trunk/bp-core/bp-core-adminbar.php
r4816 r4820 1 1 <?php 2 3 2 /** 4 3 * BuddyPress Core Admin Bar … … 9 8 * @subpackage Core 10 9 */ 10 11 // Exit if accessed directly 12 if ( !defined( 'ABSPATH' ) ) exit; 11 13 12 14 if ( !bp_use_wp_admin_bar() || defined( 'DOING_AJAX' ) ) -
trunk/bp-core/bp-core-avatars.php
r4636 r4820 6 6 * Modified for BuddyPress by: Andy Peatling - http://apeatling.wordpress.com/ 7 7 */ 8 9 // Exit if accessed directly 10 if ( !defined( 'ABSPATH' ) ) exit; 8 11 9 12 /*** -
trunk/bp-core/bp-core-buddybar.php
r4816 r4820 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 /** -
trunk/bp-core/bp-core-cache.php
r4140 r4820 1 1 <?php 2 3 2 /** 4 3 * Caching functions handle the clearing of cached objects and pages on specific 5 4 * actions throughout BuddyPress. 6 5 */ 6 7 // Exit if accessed directly 8 if ( !defined( 'ABSPATH' ) ) exit; 7 9 8 10 /** -
trunk/bp-core/bp-core-catchuri.php
r4638 r4820 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 4 2 5 /* 3 6 Based on contributions from: Chris Taylor - http://www.stillbreathing.co.uk/ -
trunk/bp-core/bp-core-classes.php
r4791 r4820 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 4 2 5 /** 3 6 * BP_Core_User class can be used by any component. It will fetch useful -
trunk/bp-core/bp-core-component.php
r4786 r4820 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 if ( !class_exists( 'BP_Component' ) ) : -
trunk/bp-core/bp-core-cssjs.php
r4632 r4820 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 4 2 5 /** 3 6 * bp_core_admin_menu_icon_css() -
trunk/bp-core/bp-core-filters.php
r4725 r4820 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 /** -
trunk/bp-core/bp-core-functions.php
r4797 r4820 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 /** -
trunk/bp-core/bp-core-hooks.php
r4631 r4820 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 /** Loaded ********************************************************************/ -
trunk/bp-core/bp-core-loader.php
r4785 r4820 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 // Require all of the BuddyPress core libraries -
trunk/bp-core/bp-core-template.php
r4775 r4820 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 /** -
trunk/bp-core/bp-core-widgets.php
r4816 r4820 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 /* Register widgets for the core component */ -
trunk/bp-core/bp-core-wpabstraction.php
r4602 r4820 9 9 * the 3.0 WordPress version merge takes place. 10 10 */ 11 12 // Exit if accessed directly 13 if ( !defined( 'ABSPATH' ) ) exit; 11 14 12 15 /** -
trunk/bp-core/deprecated/1.3.php
r4803 r4820 1 1 <?php 2 3 2 /** 4 3 * Deprecated Functions … … 8 7 * @deprecated Since 1.3 9 8 */ 9 10 // Exit if accessed directly 11 if ( !defined( 'ABSPATH' ) ) exit; 10 12 11 13 /** Loader ********************************************************************/
Note: See TracChangeset
for help on using the changeset viewer.