Take <em> tag out of translatable string

git-svn-id: https://develop.svn.wordpress.org/trunk@14169 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Nikolay Bachiyski 2010-04-20 17:06:41 +00:00
parent 81d0b63fde
commit 0663ca9043
1 changed files with 1 additions and 1 deletions

View File

@ -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 = __('<em>Your chosen password.</em>');
$message = '<em>'.__('Your chosen password.').'</em>';
$user_id = wp_create_user($user_name, $user_password, $user_email);
} else {
$message = __('User already exists. Password inherited.');