I18N: Remove HTML tags from translatable string in wp-login.php
.
See #46349. git-svn-id: https://develop.svn.wordpress.org/trunk@46229 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
39fff01a1f
commit
cb076cab0d
@ -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