mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-31 13:37:51 +01:00
Privacy: Don't replace comment author URL and email with anything.
Props TZ-Media, desrosj, birgire. Fixes #44141. Built from https://develop.svn.wordpress.org/trunk@43467 git-svn-id: http://core.svn.wordpress.org/trunk@43294 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
46fa15291f
commit
cc1bfb1e55
@ -3440,6 +3440,7 @@ function wp_comments_personal_data_eraser( $email_address, $page = 1 ) {
|
||||
)
|
||||
);
|
||||
|
||||
/* translators: Name of a comment's author after being anonymized. */
|
||||
$anon_author = __( 'Anonymous' );
|
||||
$messages = array();
|
||||
|
||||
@ -3447,9 +3448,9 @@ function wp_comments_personal_data_eraser( $email_address, $page = 1 ) {
|
||||
$anonymized_comment = array();
|
||||
$anonymized_comment['comment_agent'] = '';
|
||||
$anonymized_comment['comment_author'] = $anon_author;
|
||||
$anonymized_comment['comment_author_email'] = wp_privacy_anonymize_data( 'email', $comment->comment_author_email );
|
||||
$anonymized_comment['comment_author_email'] = '';
|
||||
$anonymized_comment['comment_author_IP'] = wp_privacy_anonymize_data( 'ip', $comment->comment_author_IP );
|
||||
$anonymized_comment['comment_author_url'] = wp_privacy_anonymize_data( 'url', $comment->comment_author_url );
|
||||
$anonymized_comment['comment_author_url'] = '';
|
||||
$anonymized_comment['user_id'] = 0;
|
||||
|
||||
$comment_id = (int) $comment->comment_ID;
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.0-alpha-43466';
|
||||
$wp_version = '5.0-alpha-43467';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user