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.
Built from https://develop.svn.wordpress.org/trunk@48616


git-svn-id: http://core.svn.wordpress.org/trunk@48378 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-07-25 19:14:03 +00:00
parent 7d305c8ff9
commit c40a645510
2 changed files with 4 additions and 3 deletions

View File

@ -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.

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.5-beta3-48615';
$wp_version = '5.5-beta3-48616';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.