Changeset 14014 for trunk/src/bp-loader.php
- Timestamp:
- 09/02/2024 10:45:11 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-loader.php
r13953 r14014 20 20 * Text Domain: buddypress 21 21 * Domain Path: /bp-languages/ 22 * Requires PHP: 5.623 * Requires at least: 6. 122 * Requires PHP: 7.0 23 * Requires at least: 6.4 24 24 * Version: 15.0.0-alpha 25 25 */ … … 34 34 35 35 // Required PHP version. 36 define( 'BP_REQUIRED_PHP_VERSION', ' 5.6.0' );36 define( 'BP_REQUIRED_PHP_VERSION', '7.0.0' ); 37 37 38 38 /** … … 77 77 return; 78 78 } else { 79 require dirname( __FILE__ ). '/class-buddypress.php';79 require __DIR__ . '/class-buddypress.php'; 80 80 81 81 /* … … 89 89 add_action( 'plugins_loaded', 'buddypress', (int) BUDDYPRESS_LATE_LOAD ); 90 90 91 // "And now here's something we hope you'll really like!".91 // "And now here's something we hope you'll really like!". 92 92 } else { 93 93 $GLOBALS['bp'] = buddypress();
Note: See TracChangeset
for help on using the changeset viewer.