Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
10/26/2020 02:11:53 PM (3 years ago)
Author:
boonebgorges
Message:

Declare $get_data = false when calling xprofile_get_field().

The default value of $get_data is true, which means that when calling
xprofile_get_field() with no explicit $user_id, but with a logged-in user,
BP_XProfile_Field::populate() will attempt to fetch the user's data. This
is usually neither intended nor needed, and results in unnecessary database
overhead.

See #8378.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-members/classes/class-bp-signup.php

    r12752 r12768  
    413413                        $visibility_level = $usermeta[ $key ];
    414414                    } else {
    415                         $vfield           = xprofile_get_field( $field_id );
     415                        $vfield           = xprofile_get_field( $field_id, null, false );
    416416                        $visibility_level = isset( $vfield->default_visibility ) ? $vfield->default_visibility : 'public';
    417417                    }
Note: See TracChangeset for help on using the changeset viewer.