Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/02/2024 10:45:11 PM (3 months ago)
Author:
espellcaste
Message:

Raise the minimum supported WordPress and PHP versions.

The new minimum WordPress version supported is 6.4.
The new minimum PHP version supported is 7.0.

Props imath.
Fixes #9225

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-loader.php

    r13953 r14014  
    2020 * Text Domain:       buddypress
    2121 * Domain Path:       /bp-languages/
    22  * Requires PHP:      5.6
    23  * Requires at least: 6.1
     22 * Requires PHP:      7.0
     23 * Requires at least: 6.4
    2424 * Version:           15.0.0-alpha
    2525 */
     
    3434
    3535// Required PHP version.
    36 define( 'BP_REQUIRED_PHP_VERSION', '5.6.0' );
     36define( 'BP_REQUIRED_PHP_VERSION', '7.0.0' );
    3737
    3838/**
     
    7777    return;
    7878} else {
    79     require dirname( __FILE__ ) . '/class-buddypress.php';
     79    require __DIR__ . '/class-buddypress.php';
    8080
    8181    /*
     
    8989        add_action( 'plugins_loaded', 'buddypress', (int) BUDDYPRESS_LATE_LOAD );
    9090
    91     // "And now here's something we hope you'll really like!".
     91        // "And now here's something we hope you'll really like!".
    9292    } else {
    9393        $GLOBALS['bp'] = buddypress();
Note: See TracChangeset for help on using the changeset viewer.