Skip to:
Content

BuddyPress.org

Changeset 6012


Ignore:
Timestamp:
05/03/2012 02:34:26 PM (14 years ago)
Author:
boonebgorges
Message:

Whitespace in bp-groups-functions.php

File:
1 edited

Legend:

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

    r5927 r6012  
    4848    $args = wp_parse_args( $args, $defaults );
    4949    extract( $args, EXTR_SKIP );
    50    
     50
    5151    $cache_key = 'bp_groups_group_' . $group_id . ( $load_users ? '_load_users' : '_noload_users' );
    52    
     52
    5353    if ( !$group = wp_cache_get( $cache_key, 'bp' ) ) {
    5454        $group = new BP_Groups_Group( $group_id, true, $load_users );
    55         wp_cache_set( $cache_key, $group, 'bp' );   
     55        wp_cache_set( $cache_key, $group, 'bp' );
    5656    }
    5757
Note: See TracChangeset for help on using the changeset viewer.