Privacy: docs fixes and improvements for wp_comments_personal_data_exporter().

Props desrosj.
See #43440.
Built from https://develop.svn.wordpress.org/trunk@43058


git-svn-id: http://core.svn.wordpress.org/trunk@42887 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2018-05-01 17:18:21 +00:00
parent 2aa8414d09
commit e0d2de94e7
2 changed files with 13 additions and 13 deletions

View File

@ -3281,7 +3281,7 @@ function wp_handle_comment_submission( $comment_data ) {
* *
* @since 4.9.6 * @since 4.9.6
* *
* @param array $exporters An array of personal data exporters. * @param array $exporters An array of personal data exporters.
* @return array $exporters An array of personal data exporters. * @return array $exporters An array of personal data exporters.
*/ */
function wp_register_comment_personal_data_exporter( $exporters ) { function wp_register_comment_personal_data_exporter( $exporters ) {
@ -3298,12 +3298,11 @@ function wp_register_comment_personal_data_exporter( $exporters ) {
* *
* @since 4.9.6 * @since 4.9.6
* *
* @param string $email_address The comment author email address. * @param string $email_address The comment author email address.
* @param int $page Comment page. * @param int $page Comment page.
* @return array $return An array of personal data. * @return array $return An array of personal data.
*/ */
function wp_comments_personal_data_exporter( $email_address, $page = 1 ) { function wp_comments_personal_data_exporter( $email_address, $page = 1 ) {
// Limit us to 500 comments at a time to avoid timing out. // Limit us to 500 comments at a time to avoid timing out.
$number = 500; $number = 500;
$page = (int) $page; $page = (int) $page;
@ -3312,11 +3311,12 @@ function wp_comments_personal_data_exporter( $email_address, $page = 1 ) {
$comments = get_comments( $comments = get_comments(
array( array(
'author_email' => $email_address, 'author_email' => $email_address,
'number' => $number, 'number' => $number,
'paged' => $page, 'paged' => $page,
'order_by' => 'comment_ID', 'order_by' => 'comment_ID',
'order' => 'ASC', 'order' => 'ASC',
'update_comment_meta_cache' => false,
) )
); );
@ -3325,7 +3325,7 @@ function wp_comments_personal_data_exporter( $email_address, $page = 1 ) {
'comment_author_email' => __( 'Comment Author Email' ), 'comment_author_email' => __( 'Comment Author Email' ),
'comment_author_url' => __( 'Comment Author URL' ), 'comment_author_url' => __( 'Comment Author URL' ),
'comment_author_IP' => __( 'Comment Author IP' ), 'comment_author_IP' => __( 'Comment Author IP' ),
'comment_agent' => __( 'Comment Agent' ), 'comment_agent' => __( 'Comment Author User Agent' ),
'comment_date' => __( 'Comment Date' ), 'comment_date' => __( 'Comment Date' ),
'comment_content' => __( 'Comment Content' ), 'comment_content' => __( 'Comment Content' ),
'comment_link' => __( 'Comment URL' ), 'comment_link' => __( 'Comment URL' ),
@ -3344,7 +3344,7 @@ function wp_comments_personal_data_exporter( $email_address, $page = 1 ) {
case 'comment_author_IP': case 'comment_author_IP':
case 'comment_agent': case 'comment_agent':
case 'comment_date': case 'comment_date':
$value = $comment->$key; $value = $comment->{$key};
break; break;
case 'comment_content': case 'comment_content':

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.0-alpha-43057'; $wp_version = '5.0-alpha-43058';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.