Set autocomplete off for password files on the profile pages. Fixes #5006.

git-svn-id: https://develop.svn.wordpress.org/trunk@9347 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood
2008-10-25 21:41:55 +00:00
parent f768084e6c
commit fc475f27b2
2 changed files with 4 additions and 5 deletions

View File

@@ -462,9 +462,9 @@ foreach ( $wp_user_search->get_results() as $userid ) {
<?php if ( apply_filters('show_password_fields', true) ) : ?>
<tr class="form-field form-required">
<th scope="row"><label for="pass1"><?php _e('Password (twice)') ?> </label></th>
<td><input name="pass1" type="password" id="pass1" />
<td><input name="pass1" type="password" id="pass1" autocomplete="off" />
<br />
<input name="pass2" type="password" id="pass2" /></td>
<input name="pass2" type="password" id="pass2" autocomplete="off"/></td>
</tr>
<?php endif; ?>