From 7924ddb0018f649d18b7ec824560ff80f72def31 Mon Sep 17 00:00:00 2001 From: nacin Date: Sun, 22 Apr 2012 08:05:17 +0000 Subject: [PATCH] Remove redundant paragraph tags. props SergeyBiryukov. fixes #20511. git-svn-id: http://svn.automattic.com/wordpress/trunk@20561 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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' ) ); }