Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
01/29/2024 06:31:34 PM (3 years ago)
Author:
imath
Message:

Raise WordPress required version to 6.1

  • Do required WP version bumps.
  • Remove WP function/version checks when these were about WP version < 6.1.
  • Init the 14.0.0 deprecated functions file.
  • Update the GH PHP Unit Action and remove the 6.0 wp-phpunit/wp-phpunit composer package downgrade that was needed when testing WP version < 6.1.

Fixes #9051
Closes https://github.com/buddypress/buddypress/pull/226

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/bp-core-functions.php

    r13705 r13718  
    47004700function bp_is_large_install() {
    47014701        // Use the Multisite function if available.
    4702         if ( function_exists( 'wp_is_large_network' ) ) {
     4702        if ( is_multisite() ) {
    47034703                $is_large = wp_is_large_network( 'users' );
    47044704        } else {
     
    48714871                11.0,
    48724872                12.0,
     4873                14.0,
    48734874        );
    48744875
Note: See TracChangeset for help on using the changeset viewer.