From 11dfbcba06aa748638eddb7344df8a493f90b3bf Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sat, 27 Mar 2010 07:22:05 +0000 Subject: [PATCH] Password nag string cleanup. Could be good to also increase the line-height on div.updated/error at some point. git-svn-id: https://develop.svn.wordpress.org/trunk@13844 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/user.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/user.php b/wp-admin/includes/user.php index b4fc73307a..1a2f997138 100644 --- a/wp-admin/includes/user.php +++ b/wp-admin/includes/user.php @@ -850,9 +850,9 @@ function default_password_nag() { if ( ! get_user_option('default_password_nag') ) //Short circuit it. return; - echo '

'; - printf(__("Notice: you're using the auto-generated password for your account. Would you like to change it to something you'll remember easier?
- Yes, Take me to my profile page | No Thanks, Do not remind me again."), admin_url('profile.php') . '#password', '?default_password_nag=0'); + echo '

' . __('Notice:') . ' '; + printf(__("You're using the auto-generated password for your account. Would you like to change it to something you'll remember easier?
+ Yes, take me to my profile page | No thanks, do not remind me again"), admin_url('profile.php') . '#password', '?default_password_nag=0'); echo '

'; }