diff --git a/src/wp-admin/includes/dashboard.php b/src/wp-admin/includes/dashboard.php index dc5b12f5fb..178e45b2a1 100644 --- a/src/wp-admin/includes/dashboard.php +++ b/src/wp-admin/includes/dashboard.php @@ -1671,7 +1671,7 @@ function wp_dashboard_browser_nag() { if ( $response ) { if ( $is_IE ) { - $msg = __( "Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site." ); + $msg = __( 'Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site.' ); } elseif ( $response['insecure'] ) { $msg = sprintf( /* translators: %s: Browser name and link. */ @@ -1690,7 +1690,7 @@ function wp_dashboard_browser_nag() { if ( ! empty( $response['img_src'] ) ) { $img_src = ( is_ssl() && ! empty( $response['img_src_ssl'] ) ) ? $response['img_src_ssl'] : $response['img_src']; - $notice .= '
'; + $notice .= '
'; $browser_nag_class = ' has-browser-icon'; } $notice .= "

{$msg}

";