Skip to:
Content

BuddyPress.org

Ticket #3513: filter_xprofile_get_field_data_fieldID.patch

File filter_xprofile_get_field_data_fieldID.patch, 631 bytes (added by sboisvert, 14 years ago)
  • bp-xprofile-functions.php

     
    173173        if ( is_array( $values ) ) {
    174174                $data = array();
    175175                foreach( (array)$values as $value ) {
    176                         $data[] = apply_filters( 'xprofile_get_field_data', $value );
     176                        $data[] = apply_filters( 'xprofile_get_field_data', $value, $field_id );
    177177                }
    178178        } else {
    179                 $data = apply_filters( 'xprofile_get_field_data', $values );
     179                $data = apply_filters( 'xprofile_get_field_data', $values, $field_id );
    180180        }
    181181
    182182        return $data;