Make WordPress Core


Ignore:
Timestamp:
08/18/2019 02:07:00 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Privacy: Add descriptions for sections in a personal data export file.

Props garrett-eclipse, Venutius, karmatosed.
Fixes #45491.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/comment.php

    r45739 r45825  
    34353435
    34363436        $data_to_export[] = array(
    3437             'group_id'    => 'comments',
    3438             'group_label' => __( 'Comments' ),
    3439             'item_id'     => "comment-{$comment->comment_ID}",
    3440             'data'        => $comment_data_to_export,
     3437            'group_id'          => 'comments',
     3438            'group_label'       => __( 'Comments' ),
     3439            'group_description' => __( 'User’s comment data.' ),
     3440            'item_id'           => "comment-{$comment->comment_ID}",
     3441            'data'              => $comment_data_to_export,
    34413442        );
    34423443    }
Note: See TracChangeset for help on using the changeset viewer.