From eb4db8255879950e165bb5169802f5a5f04dfc48 Mon Sep 17 00:00:00 2001 From: joedolson Date: Sun, 8 Oct 2023 17:56:24 +0000 Subject: [PATCH] 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 --- wp-admin/themes.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/themes.php b/wp-admin/themes.php index 80486748f4..31a2e26d64 100644 --- a/wp-admin/themes.php +++ b/wp-admin/themes.php @@ -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.' ) . '' . __( 'Visit site' ) . '', + __( 'Settings saved and theme activated.' ) . ' ' . __( 'Visit site' ) . '', 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.' ) . '' . __( 'Visit site' ) . '', + __( 'New theme activated.' ) . ' ' . __( 'Visit site' ) . '', array( 'id' => 'message2', 'additional_classes' => array( 'updated' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 0fb05e3168..8b4c0d725c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.