Changeset 13539 for trunk/src/bp-activity/bp-activity-functions.php
- Timestamp:
- 07/31/2023 09:59:10 AM (2 years ago)
- File:
-
- 1 edited
-
trunk/src/bp-activity/bp-activity-functions.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/bp-activity-functions.php
r13531 r13539 4393 4393 */ 4394 4394 function bp_activity_personal_data_exporter( $email_address, $page ) { 4395 $number = 50; 4396 4397 $email_address = trim( $email_address ); 4398 4399 $data_to_export = array(); 4395 $number = 50; 4396 $email_address = trim( $email_address ); 4397 $user_data_to_export = array(); 4400 4398 4401 4399 $user = get_user_by( 'email', $email_address ); … … 4418 4416 ) ); 4419 4417 4420 $user_data_to_export = array();4421 4418 $activity_actions = bp_activity_get_actions(); 4422 4419 … … 4466 4463 $item_data = apply_filters( 'bp_activity_personal_data_export_item_data', $item_data, $activity ); 4467 4464 4468 $ data_to_export[] = array(4465 $user_data_to_export[] = array( 4469 4466 'group_id' => 'bp_activity', 4470 4467 'group_label' => __( 'Activity', 'buddypress' ), … … 4478 4475 4479 4476 return array( 4480 'data' => $ data_to_export,4477 'data' => $user_data_to_export, 4481 4478 'done' => $done, 4482 4479 );
Note: See TracChangeset
for help on using the changeset viewer.