Privacy: docs fixes and improvements for `wp_comments_personal_data_exporter()`.
Props desrosj. Merges [43058] to the 4.9 branch. See #43440. Built from https://develop.svn.wordpress.org/branches/4.9@43079 git-svn-id: http://core.svn.wordpress.org/branches/4.9@42908 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
59593950dc
commit
257be25506
|
@ -3173,7 +3173,6 @@ function wp_register_comment_personal_data_exporter( $exporters ) {
|
||||||
* @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;
|
||||||
|
@ -3187,6 +3186,7 @@ function wp_comments_personal_data_exporter( $email_address, $page = 1 ) {
|
||||||
'paged' => $page,
|
'paged' => $page,
|
||||||
'order_by' => 'comment_ID',
|
'order_by' => 'comment_ID',
|
||||||
'order' => 'ASC',
|
'order' => 'ASC',
|
||||||
|
'update_comment_meta_cache' => false,
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -3195,7 +3195,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' ),
|
||||||
|
@ -3214,7 +3214,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':
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.9.6-alpha-43078';
|
$wp_version = '4.9.6-alpha-43079';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
||||||
|
|
Loading…
Reference in New Issue