Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
10/26/2020 02:11:53 PM (4 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-xprofile/bp-xprofile-template.php

    r12596 r12768  
    768768         */
    769769        if ( ! method_exists( $field, 'get_children' ) ) {
    770             $field_obj = xprofile_get_field( $field->id );
     770            $field_obj = xprofile_get_field( $field->id, null, false );
    771771
    772772            foreach ( $field as $field_prop => $field_prop_value ) {
Note: See TracChangeset for help on using the changeset viewer.