I18N: Remove HTML tags from translatable string in `wp-login.php`.

See #46349.
Built from https://develop.svn.wordpress.org/trunk@46229


git-svn-id: http://core.svn.wordpress.org/trunk@46041 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2019-09-21 15:54:57 +00:00
parent 01b6bd9f38
commit c72a36596e
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.3-alpha-46228';
$wp_version = '5.3-alpha-46229';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

View File

@ -660,8 +660,8 @@ switch ( $action ) {
printf(
/* translators: %s: Admin email address. */
__( 'Current administration email: <strong>%s</strong>' ),
esc_html( $admin_email )
__( 'Current administration email: %s' ),
'<strong>' . esc_html( $admin_email ) . '</strong>'
);
?>