Make WordPress Core

Changeset 56800

Timestamp:
10/08/2023 05:54:21 PM (10 months ago)
Author:
joedolson
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/themes.php

    r56639 r56800  
    272272    if ( isset( $_GET['previewed'] ) ) {
    273273        wp_admin_notice(
    274             __( 'Settings saved and theme activated.' ) . '<a href="' . esc_url( home_url( '/' ) ) . '">' . __( 'Visit site' ) . '</a>',
     274            __( 'Settings saved and theme activated.' ) . '<a href="' . esc_url( home_url( '/' ) ) . '">' . __( 'Visit site' ) . '</a>',
    275275            array(
    276276                'id'                 => 'message2',
     
    281281    } else {
    282282        wp_admin_notice(
    283             __( 'New theme activated.' ) . '<a href="' . esc_url( home_url( '/' ) ) . '">' . __( 'Visit site' ) . '</a>',
     283            __( 'New theme activated.' ) . '<a href="' . esc_url( home_url( '/' ) ) . '">' . __( 'Visit site' ) . '</a>',
    284284            array(
    285285                'id'                 => 'message2',
Note: See TracChangeset for help on using the changeset viewer.