mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-10 09:31:54 +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
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
@ -660,8 +660,8 @@ switch ( $action ) {
|
|||||||
|
|
||||||
printf(
|
printf(
|
||||||
/* translators: %s: Admin email address. */
|
/* translators: %s: Admin email address. */
|
||||||
__( 'Current administration email: <strong>%s</strong>' ),
|
__( 'Current administration email: %s' ),
|
||||||
esc_html( $admin_email )
|
'<strong>' . esc_html( $admin_email ) . '</strong>'
|
||||||
);
|
);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user