Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
11/23/2010 10:59:37 PM (15 years ago)
Author:
djpaul
Message:

Don't pass function arguments by reference, as deprecated in PHP 5.3. Fixes #2759.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-xprofile/bp-xprofile-templatetags.php

    r3391 r3479  
    159159
    160160    $profile_template = new BP_XProfile_Data_Template( $user_id, $profile_group_id, $hide_empty_groups, $fetch_fields, $fetch_field_data, $exclude_groups, $exclude_fields );
    161     return apply_filters( 'bp_has_profile', $profile_template->has_groups(), &$profile_template );
     161    return apply_filters( 'bp_has_profile', $profile_template->has_groups(), $profile_template );
    162162}
    163163
Note: See TracChangeset for help on using the changeset viewer.