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

see #21243.


git-svn-id: https://develop.svn.wordpress.org/trunk@30855 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin
2014-12-15 08:33:48 +00:00
parent 7344a29063
commit 0375edc8c6
5 changed files with 5 additions and 6 deletions
+1 -2
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 ! " ? $ % ^ & ).' );
/**