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:
ocean90 2019-09-21 15:53:02 +00:00
parent 39fff01a1f
commit cb076cab0d

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>'
);
?>