Administration: Add missing space in theme activation notices.
Restore missing space in two admin notices during theme activation. Props shailu25, sergeybiryukov, mukesh27, hellofromtonya. Fixes #59501. See #57791. Built from https://develop.svn.wordpress.org/trunk@56800 git-svn-id: http://core.svn.wordpress.org/trunk@56312 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bc26809c97
commit
eb4db82558
|
@ -271,7 +271,7 @@ if ( ! validate_current_theme() || isset( $_GET['broken'] ) ) {
|
|||
} elseif ( isset( $_GET['activated'] ) ) {
|
||||
if ( isset( $_GET['previewed'] ) ) {
|
||||
wp_admin_notice(
|
||||
__( 'Settings saved and theme activated.' ) . '<a href="' . esc_url( home_url( '/' ) ) . '">' . __( 'Visit site' ) . '</a>',
|
||||
__( 'Settings saved and theme activated.' ) . ' <a href="' . esc_url( home_url( '/' ) ) . '">' . __( 'Visit site' ) . '</a>',
|
||||
array(
|
||||
'id' => 'message2',
|
||||
'additional_classes' => array( 'updated' ),
|
||||
|
@ -280,7 +280,7 @@ if ( ! validate_current_theme() || isset( $_GET['broken'] ) ) {
|
|||
);
|
||||
} else {
|
||||
wp_admin_notice(
|
||||
__( 'New theme activated.' ) . '<a href="' . esc_url( home_url( '/' ) ) . '">' . __( 'Visit site' ) . '</a>',
|
||||
__( 'New theme activated.' ) . ' <a href="' . esc_url( home_url( '/' ) ) . '">' . __( 'Visit site' ) . '</a>',
|
||||
array(
|
||||
'id' => 'message2',
|
||||
'additional_classes' => array( 'updated' ),
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.4-beta2-56799';
|
||||
$wp_version = '6.4-beta2-56800';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue