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:
parent
498be1cae9
commit
741e0ec6de
|
@ -133,7 +133,7 @@ function display_setup_form( $error = null ) {
|
|||
<input name="admin_password" type="password" id="pass1" size="25" value="" />
|
||||
<p><input name="admin_password2" type="password" id="pass2" size="25" value="" /></p>
|
||||
<div id="pass-strength-result"><?php _e('Strength indicator'); ?></div>
|
||||
<p><?php echo _wp_get_password_hint(); ?></p>
|
||||
<p><?php echo wp_get_password_hint(); ?></p>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endif; ?>
|
||||
|
|
|
@ -488,7 +488,7 @@ if ( $show_password_fields ) :
|
|||
<p class="description"><?php _e( 'Type your new password again.' ); ?></p>
|
||||
<br />
|
||||
<div id="pass-strength-result"><?php _e( 'Strength indicator' ); ?></div>
|
||||
<p class="description indicator-hint"><?php echo _wp_get_password_hint(); ?></p>
|
||||
<p class="description indicator-hint"><?php echo wp_get_password_hint(); ?></p>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endif; ?>
|
||||
|
|
|
@ -398,7 +398,7 @@ if ( apply_filters( 'show_password_fields', true ) ) : ?>
|
|||
<input name="pass2" type="password" id="pass2" autocomplete="off" />
|
||||
<br />
|
||||
<div id="pass-strength-result"><?php _e('Strength indicator'); ?></div>
|
||||
<p class="description indicator-hint"><?php echo _wp_get_password_hint(); ?></p>
|
||||
<p class="description indicator-hint"><?php echo wp_get_password_hint(); ?></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
@ -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 ! " ? $ % ^ & ).' );
|
||||
|
||||
/**
|
||||
|
|
|
@ -635,7 +635,7 @@ case 'rp' :
|
|||
</p>
|
||||
|
||||
<div id="pass-strength-result" class="hide-if-no-js"><?php _e('Strength indicator'); ?></div>
|
||||
<p class="description indicator-hint"><?php echo _wp_get_password_hint(); ?></p>
|
||||
<p class="description indicator-hint"><?php echo wp_get_password_hint(); ?></p>
|
||||
<br class="clear" />
|
||||
|
||||
<?php
|
||||
|
|
Loading…
Reference in New Issue