Changeset 30033
- Timestamp:
- 10/26/2014 11:29:11 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/install.php
r29962 r30033 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> -
trunk/src/wp-admin/user-edit.php
r30027 r30033 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 _wp_get_password_hint(); ?></p> 474 474 </td> 475 475 </tr> -
trunk/src/wp-admin/user-new.php
r30005 r30033 397 397 <br /> 398 398 <div id="pass-strength-result"><?php _e('Strength indicator'); ?></div> 399 <p class="description indicator-hint"><?php echo _wp_ password_hint(); ?></p>399 <p class="description indicator-hint"><?php echo _wp_get_password_hint(); ?></p> 400 400 </td> 401 401 </tr> -
trunk/src/wp-includes/user.php
r30016 r30033 2091 2091 * @return string The password hint text. 2092 2092 */ 2093 function _wp_ password_hint() {2093 function _wp_get_password_hint() { 2094 2094 $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 ! " ? $ % ^ & ).' ); 2095 2095 -
trunk/src/wp-login.php
r29962 r30033 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
Note: See TracChangeset
for help on using the changeset viewer.