Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/24/2014 09:59:17 PM (11 years ago)
Author:
boonebgorges
Message:

Update bp_last_activity cache when fetching user last_activity.

The cache doesn't do much when it's not set :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/bp-core-classes.php

    r8290 r8320  
    13331333
    13341334        // get cache for single user only
     1335        // @todo Why only single user?
    13351336        if ( ! is_array( $user_id ) ) {
    13361337            $cache = wp_cache_get( $user_id, 'bp_last_activity' );
     
    13561357                'activity_id'   => $last_activity->id,
    13571358            );
     1359        }
     1360
     1361        // If this was a single user query, update the cache
     1362        if ( ! is_array( $user_id ) && isset( $retval[ $user_id ] ) ) {
     1363            wp_cache_set( $user_id, $retval[ $user_id ], 'bp_last_activity' );
    13581364        }
    13591365
Note: See TracChangeset for help on using the changeset viewer.