No need for wp_get_password_hint() to be prefixed as if it is private.

see #21243.

Built from https://develop.svn.wordpress.org/trunk@30855


git-svn-id: http://core.svn.wordpress.org/trunk@30845 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin
2014-12-15 08:34:23 +00:00
parent 498be1cae9
commit 741e0ec6de
5 changed files with 5 additions and 6 deletions

View File

@@ -2093,11 +2093,10 @@ function _wp_get_user_contactmethods( $user = null ) {
* Gets the text suggesting how to create strong passwords.
*
* @since 4.1.0
* @access private
*
* @return string The password hint text.
*/
function _wp_get_password_hint() {
function wp_get_password_hint() {
$hint = __( 'Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers, and symbols like ! " ? $ % ^ & ).' );
/**