Changeset 43229
- Timestamp:
- 05/10/2018 08:24:41 PM (7 years ago)
- Location:
- branches/4.9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
-
branches/4.9/src/wp-admin/includes/ajax-actions.php
r43157 r43229 4167 4167 } else { 4168 4168 // No exporters, so we're done. 4169 $exporter_key = ''; 4170 4169 4171 $response = array( 4170 4172 'data' => array(), … … 4186 4188 * @param int $request_id The privacy request post ID associated with this request. 4187 4189 * @param bool $send_as_email Whether the final results of the export should be emailed to the user. 4188 * @param int$exporter_key The key (slug) of the exporter that provided this data.4190 * @param string $exporter_key The key (slug) of the exporter that provided this data. 4189 4191 */ 4190 4192 $response = apply_filters( 'wp_privacy_personal_data_export_page', $response, $exporter_index, $email_address, $page, $request_id, $send_as_email, $exporter_key ); … … 4383 4385 } else { 4384 4386 // No erasers, so we're done. 4387 $eraser_key = ''; 4388 4385 4389 $response = array( 4386 4390 'items_removed' => false, … … 4403 4407 * @param int $page The page for this response. 4404 4408 * @param int $request_id The privacy request post ID associated with this request. 4405 * @param int$eraser_key The key (slug) of the eraser that provided this data.4409 * @param string $eraser_key The key (slug) of the eraser that provided this data. 4406 4410 */ 4407 4411 $response = apply_filters( 'wp_privacy_personal_data_erasure_page', $response, $eraser_index, $email_address, $page, $request_id, $eraser_key );
Note: See TracChangeset
for help on using the changeset viewer.