Ticket #21243: 21243.patch
File 21243.patch, 2.6 KB (added by , 7 years ago) |
---|
-
wp-admin/install.php
133 133 <input name="admin_password" type="password" id="pass1" size="25" value="" /> 134 134 <p><input name="admin_password2" type="password" id="pass2" size="25" value="" /></p> 135 135 <div id="pass-strength-result"><?php _e('Strength indicator'); ?></div> 136 <p><?php echo _wp_ password_hint(); ?></p>136 <p><?php echo _wp_get_password_hint(); ?></p> 137 137 </td> 138 138 </tr> 139 139 <?php endif; ?> -
wp-admin/user-edit.php
470 470 <p class="description"><?php _e( 'Type your new password again.' ); ?></p> 471 471 <br /> 472 472 <div id="pass-strength-result"><?php _e( 'Strength indicator' ); ?></div> 473 <p class="description indicator-hint"><?php echo _wp_password_hint(); ?></p> 473 <p class="description indicator-hint"><?php echo 474 _wp_get_password_hint(); ?></p> 474 475 </td> 475 476 </tr> 476 477 <?php endif; ?> -
wp-admin/user-new.php
400 400 <input name="pass2" type="password" id="pass2" autocomplete="off" /> 401 401 <br /> 402 402 <div id="pass-strength-result"><?php _e('Strength indicator'); ?></div> 403 <p class="description indicator-hint"><?php echo _wp_ password_hint(); ?></p>403 <p class="description indicator-hint"><?php echo _wp_get_password_hint(); ?></p> 404 404 </td> 405 405 </tr> 406 406 <tr> -
wp-includes/user.php
2078 2078 * 2079 2079 * @return string The password hint text. 2080 2080 */ 2081 function _wp_ password_hint() {2081 function _wp_get_password_hint() { 2082 2082 $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 ! " ? $ % ^ & ).' ); 2083 2083 2084 2084 /** -
wp-login.php
626 626 </p> 627 627 628 628 <div id="pass-strength-result" class="hide-if-no-js"><?php _e('Strength indicator'); ?></div> 629 <p class="description indicator-hint"><?php echo _wp_ password_hint(); ?></p>629 <p class="description indicator-hint"><?php echo _wp_get_password_hint(); ?></p> 630 630 <br class="clear" /> 631 631 632 632 <?php