From c5719ba15a0ade74d1a65aac28e23d99855c06d0 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Wed, 29 Jul 2015 14:06:25 +0000 Subject: [PATCH] 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 --- wp-admin/includes/user.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/user.php b/wp-admin/includes/user.php index 8304314948..e675bd78e6 100644 --- a/wp-admin/includes/user.php +++ b/wp-admin/includes/user.php @@ -442,7 +442,7 @@ function default_password_nag() { echo '
'; echo '

'; echo '' . __('Notice:') . ' '; - _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 '

'; printf( '' . __('Yes, take me to my profile page') . ' | ', get_edit_profile_url() . '#password' ); printf( '' . __('No thanks, do not remind me again') . '', '?default_password_nag=0' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 0833b87214..cc96c39559 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.