From 4acb5a7ce8db909c05aa379c9456748438fdadc9 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 25 Jul 2020 19:12:15 +0000 Subject: [PATCH] Docs: Correct `@see` references for privacy hooks: * `wp_privacy_personal_data_export_page` * `wp_privacy_personal_data_erasure_page` Hooks should be single-quoted when referenced. Props pbiron, coffee2code. See #49572, #meta5318. git-svn-id: https://develop.svn.wordpress.org/trunk@48616 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/privacy-tools.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/includes/privacy-tools.php b/src/wp-admin/includes/privacy-tools.php index 11754a399a..ada0f11410 100644 --- a/src/wp-admin/includes/privacy-tools.php +++ b/src/wp-admin/includes/privacy-tools.php @@ -720,9 +720,10 @@ All at ###SITENAME### /** * Intercept personal data exporter page Ajax responses in order to assemble the personal data export file. * - * @see wp_privacy_personal_data_export_page * @since 4.9.6 * + * @see 'wp_privacy_personal_data_export_page' + * * @param array $response The response from the personal data exporter for the given page. * @param int $exporter_index The index of the personal data exporter. Begins at 1. * @param string $email_address The email address of the user whose personal data this is. @@ -861,7 +862,7 @@ function wp_privacy_process_personal_data_export_page( $response, $exporter_inde * * @since 4.9.6 * - * @see wp_privacy_personal_data_erasure_page + * @see 'wp_privacy_personal_data_erasure_page' * * @param array $response The response from the personal data eraser for * the given page.