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/classes/class-bp-attachment.php

    r13315 r13718  
    644644                );
    645645
    646                 /**
    647                  * Make sure the wp_read_image_metadata function is reachable for the old Avatar UI
    648                  * or if WordPress < 3.9 (New Avatar UI is not available in this case)
    649                  */
     646                // Make sure the wp_read_image_metadata function is reachable.
    650647                if ( ! function_exists( 'wp_read_image_metadata' ) ) {
    651648                        require_once( ABSPATH . 'wp-admin/includes/image.php' );
Note: See TracChangeset for help on using the changeset viewer.