General: Update English Gravatar links.
Replace links to en.gravatar.com with links to gravatar.com as the english site now uses the base domain. This avoids an unnecessary redirect for english language sites. The links remain translatable for non-english versions of WordPress. Props narenin, knutsp. Fixes #61424. Built from https://develop.svn.wordpress.org/trunk@58810 git-svn-id: http://core.svn.wordpress.org/trunk@58206 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bb26471543
commit
db0c2dacbf
|
@ -278,7 +278,8 @@ if ( ! function_exists( 'wp_install_defaults' ) ) :
|
|||
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
|
||||
Commenter avatars come from <a href="%s">Gravatar</a>.'
|
||||
),
|
||||
esc_url( __( 'https://en.gravatar.com/' ) )
|
||||
/* translators: The localized Gravatar URL. */
|
||||
esc_url( __( 'https://gravatar.com/' ) )
|
||||
);
|
||||
$wpdb->insert(
|
||||
$wpdb->comments,
|
||||
|
|
|
@ -628,7 +628,8 @@ switch ( $action ) {
|
|||
$description = sprintf(
|
||||
/* translators: %s: Gravatar URL. */
|
||||
__( '<a href="%s">You can change your profile picture on Gravatar</a>.' ),
|
||||
__( 'https://en.gravatar.com/' )
|
||||
/* translators: The localized Gravatar URL. */
|
||||
__( 'https://gravatar.com/' )
|
||||
);
|
||||
} else {
|
||||
$description = '';
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.7-alpha-58809';
|
||||
$wp_version = '6.7-alpha-58810';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue