mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-03 22:21:35 +01:00
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:
parent
01b6bd9f38
commit
c72a36596e
@ -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.
|
||||
|
@ -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>'
|
||||
);
|
||||
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user