Making WordPress.org


Ignore:
Timestamp:
04/10/2017 03:50:13 PM (8 years ago)
Author:
coffee2code
Message:

Support Forums: Change cache group names to avoid conflicts.

See #2710.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-directory-compat.php

    r5302 r5307  
    833833        // Check the cache.
    834834        $cache_key = $slug;
    835         $cache_group = $this->compat() . '-authors';
     835        $cache_group = $this->compat() . '-authors-slugs';
    836836        $authors = wp_cache_get( $cache_key, $cache_group );
    837837        if ( false === $authors ) {
     
    877877        // Check the cache.
    878878        $cache_key = $slug;
    879         $cache_group = $this->compat() . '-contributors';
     879        $cache_group = $this->compat() . '-contributors-slugs';
    880880        $contributors = wp_cache_get( $cache_key, $cache_group );
    881881        if ( false === $contributors ) {
Note: See TracChangeset for help on using the changeset viewer.