Ticket #3513: filter_xprofile_get_field_data_fieldID.patch
File filter_xprofile_get_field_data_fieldID.patch, 631 bytes (added by , 14 years ago) |
---|
-
bp-xprofile-functions.php
173 173 if ( is_array( $values ) ) { 174 174 $data = array(); 175 175 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 ); 177 177 } 178 178 } else { 179 $data = apply_filters( 'xprofile_get_field_data', $values );179 $data = apply_filters( 'xprofile_get_field_data', $values, $field_id ); 180 180 } 181 181 182 182 return $data;