From 9aff4a62064049196eda9990ce72caea7e4eccb1 Mon Sep 17 00:00:00 2001 From: nbachiyski Date: Tue, 20 Apr 2010 17:06:41 +0000 Subject: [PATCH] Take tag out of translatable string git-svn-id: http://svn.automattic.com/wordpress/trunk@14169 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/upgrade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/upgrade.php b/wp-admin/includes/upgrade.php index e7a09222ea..94f2d65300 100644 --- a/wp-admin/includes/upgrade.php +++ b/wp-admin/includes/upgrade.php @@ -71,7 +71,7 @@ function wp_install( $blog_title, $user_name, $user_email, $public, $deprecated $email_password = true; } else if ( !$user_id ) { // Password has been provided - $message = __('Your chosen password.'); + $message = ''.__('Your chosen password.').''; $user_id = wp_create_user($user_name, $user_password, $user_email); } else { $message = __('User already exists. Password inherited.');