diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 24ea68f2a7..07722daeb3 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -2231,9 +2231,9 @@ function wp_explain_nonce( $action ) { */ function wp_nonce_ays( $action ) { $title = __( 'WordPress Failure Notice' ); - $html = wp_specialchars( wp_explain_nonce( $action ) ) . '

'; + $html = wp_specialchars( wp_explain_nonce( $action ) ); if ( wp_get_referer() ) - $html .= "

" . __( 'Please try again.' ) . ""; + $html .= "

" . __( 'Please try again.' ) . ""; wp_die( $html, $title); }