From 1e3214a977966da273d1633d71fb2676364f1d5c Mon Sep 17 00:00:00 2001 From: Joe Dolson Date: Sun, 8 Oct 2023 17:54:21 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@56800 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/themes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/themes.php b/src/wp-admin/themes.php index 80486748f4..31a2e26d64 100644 --- a/src/wp-admin/themes.php +++ b/src/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' ),