Changeset 6807 for trunk/src/includes/extend/buddypress/loader.php
- Timestamp:
- 04/23/2018 03:45:36 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/extend/buddypress/loader.php
r6777 r6807 75 75 } 76 76 77 parent::includes( $includes ); 77 // Require files if they exist 78 foreach ( $includes as $file ) { 79 if ( @is_file( $this->path . $file ) ) { 80 require $this->path . $file; 81 } 82 } 83 84 /** 85 * Hook for plugins to include files, if necessary. 86 * 87 * @since 2.6.0 bbPress (r3552) 88 */ 89 do_action( "bp_{$this->id}_includes" ); 78 90 } 79 91
Note: See TracChangeset
for help on using the changeset viewer.