From de6fba2b41a26bb88125daa91bd4220ca609164b Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 22 Apr 2013 20:49:24 +0000 Subject: [PATCH] Adjust some strings in wp-signup.php. * Remove double space. * Remove outer HTML. props pavelevap, SergeyBiryukov. fixes #22306. git-svn-id: https://develop.svn.wordpress.org/trunk@24058 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-signup.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-signup.php b/wp-signup.php index 7c2cb221fa..43f3ecf579 100644 --- a/wp-signup.php +++ b/wp-signup.php @@ -503,7 +503,7 @@ function confirm_blog_signup($domain, $path, $blog_title, $user_name = '', $user

The site you were looking for, %s does not exist, but you can create it now!

' ), $newblog ); + printf( '

' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '

', $newblog ); else - printf( __( '

The site you were looking for, %s, does not exist.

' ), $newblog ); + printf( '

' . __( 'The site you were looking for, %s, does not exist.' ) . '

', $newblog ); } break; }