From 71e8d4ac2b45bacde20d2c9af9d68f75e6c1afb2 Mon Sep 17 00:00:00 2001 From: Ian Dunn Date: Wed, 2 May 2018 21:30:55 +0000 Subject: [PATCH] Privacy: Use "website" in comment cookie consent text for clarity. The term "URL" is technical jargon which will not be familiar to all commenters. "Website" is more universal, and matches the label on the `url` input field. Props johnjamesjacoby, allendav, azaozz. See #43436. git-svn-id: https://develop.svn.wordpress.org/trunk@43123 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/comment-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/comment-template.php b/src/wp-includes/comment-template.php index 39e193db19..ca016b5c68 100644 --- a/src/wp-includes/comment-template.php +++ b/src/wp-includes/comment-template.php @@ -2270,7 +2270,7 @@ function comment_form( $args = array(), $post_id = null ) { '

', 'cookies' => '', + __( 'Save my name, email, and website in this browser for the next time I comment.' ) . '

', ); $required_text = sprintf( ' ' . __( 'Required fields are marked %s' ), '*' );