Make the "using default password" nag more accurate.
"Easy to remember" isn't necessarily what we want to encourage. fixes #33168 props arjunskumar Built from https://develop.svn.wordpress.org/trunk@33485 git-svn-id: http://core.svn.wordpress.org/trunk@33452 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
926006ea56
commit
c5719ba15a
|
@ -442,7 +442,7 @@ function default_password_nag() {
|
|||
echo '<div class="error default-password-nag">';
|
||||
echo '<p>';
|
||||
echo '<strong>' . __('Notice:') . '</strong> ';
|
||||
_e('You’re using the auto-generated password for your account. Would you like to change it to something easier to remember?');
|
||||
_e('You’re using the auto-generated password for your account. Would you like to change it?');
|
||||
echo '</p><p>';
|
||||
printf( '<a href="%s">' . __('Yes, take me to my profile page') . '</a> | ', get_edit_profile_url() . '#password' );
|
||||
printf( '<a href="%s" id="default-password-nag-no">' . __('No thanks, do not remind me again') . '</a>', '?default_password_nag=0' );
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-beta4-33484';
|
||||
$wp_version = '4.3-beta4-33485';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue