Take <em> tag out of translatable string
git-svn-id: http://svn.automattic.com/wordpress/trunk@14169 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4f9e5d644b
commit
9aff4a6206
|
@ -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.');
|
||||
|
|
Loading…
Reference in New Issue