From 99d723ac19165c85bd129ef0f6ad97b254c1e81e Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sun, 22 Apr 2012 08:05:17 +0000 Subject: [PATCH] Remove redundant paragraph tags. props SergeyBiryukov. fixes #20511. git-svn-id: https://develop.svn.wordpress.org/trunk@20561 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-load.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-load.php b/wp-load.php index 3e67d0790d..600805a2d1 100644 --- a/wp-load.php +++ b/wp-load.php @@ -52,10 +52,10 @@ if ( file_exists( ABSPATH . 'wp-config.php') ) { wp_check_php_mysql_versions(); // Die with an error message - $die = '

' . __( "There doesn't seem to be a wp-config.php file. I need this before we can get started." ) . '

'; + $die = __( "There doesn't seem to be a wp-config.php file. I need this before we can get started." ) . '

'; $die .= '

' . __( "Need more help? We got it." ) . '

'; $die .= '

' . __( "You can create a wp-config.php file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file." ) . '

'; - $die .= '

' . __( "Create a Configuration File" ) . '

'; + $die .= '

' . __( "Create a Configuration File" ) . ''; wp_die( $die, __( 'WordPress › Error' ) ); }