Changeset 30940
- Timestamp:
- 12/16/2014 10:18:48 PM (10 years ago)
- Location:
- branches/4.1/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.1/src/wp-admin/install.php
r30054 r30940 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_get_password_hint(); ?></p>136 <p><?php echo wp_get_password_hint(); ?></p> 137 137 </td> 138 138 </tr> -
branches/4.1/src/wp-admin/user-edit.php
r30895 r30940 480 480 <br /> 481 481 <div id="pass-strength-result"><?php _e( 'Strength indicator' ); ?></div> 482 <p class="description indicator-hint"><?php echo _wp_get_password_hint(); ?></p>482 <p class="description indicator-hint"><?php echo wp_get_password_hint(); ?></p> 483 483 </td> 484 484 </tr> -
branches/4.1/src/wp-admin/user-new.php
r30754 r30940 399 399 <br /> 400 400 <div id="pass-strength-result"><?php _e('Strength indicator'); ?></div> 401 <p class="description indicator-hint"><?php echo _wp_get_password_hint(); ?></p>401 <p class="description indicator-hint"><?php echo wp_get_password_hint(); ?></p> 402 402 </td> 403 403 </tr> -
branches/4.1/src/wp-includes/user.php
r30753 r30940 2094 2094 * 2095 2095 * @since 4.1.0 2096 * @access private2097 2096 * 2098 2097 * @return string The password hint text. 2099 2098 */ 2100 function _wp_get_password_hint() {2099 function wp_get_password_hint() { 2101 2100 $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 ! " ? $ % ^ & ).' ); 2102 2101 -
branches/4.1/src/wp-login.php
r30651 r30940 636 636 637 637 <div id="pass-strength-result" class="hide-if-no-js"><?php _e('Strength indicator'); ?></div> 638 <p class="description indicator-hint"><?php echo _wp_get_password_hint(); ?></p>638 <p class="description indicator-hint"><?php echo wp_get_password_hint(); ?></p> 639 639 <br class="clear" /> 640 640
Note: See TracChangeset
for help on using the changeset viewer.