Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
08/08/2022 09:24:03 PM (2 years ago)
Author:
imath
Message:

Adapt to WP Cache API latest change about cache key requirements

In WordPress 6.1, a cache key needs to be an integer or a "not empty" string. See WP53818 changeset.

After analysing the failing PHPUnit failing tests, it seems we were not careful enough about cache key checks in a few cases:

  • When generating an activity comment without a corresponding parent activity in our tests.
  • When trying to cache a group membership ID for the group creator before this membership has been created.
  • When trying to check if a member had a member type or a group had a group type using an empty string although into 2 of our unit tests.

Fixes #8727

File:
1 edited

Legend:

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

    r13280 r13309  
    32483248    }
    32493249
     3250    $group_id = (int) $group_id;
     3251    if ( ! $group_id ) {
     3252        return false;
     3253    }
     3254
    32503255    // Get all group's group types.
    32513256    $types = bp_groups_get_group_type( $group_id, false );
Note: See TracChangeset for help on using the changeset viewer.