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-activity/bp-activity-functions.php

    r13305 r13309  
    20642064
    20652065    // If this is an activity comment, rebuild the tree.
    2066     if ( 'activity_comment' === $activity->type ) {
     2066    if ( 'activity_comment' === $activity->type && ! empty( $activity->item_id ) ) {
    20672067        // Also clear the comment cache for the parent activity ID.
    20682068        wp_cache_delete( $activity->item_id, 'bp_activity_comments' );
Note: See TracChangeset for help on using the changeset viewer.