Skip to content

Commit

Permalink
Rejigger some whitespace in anticipation of a fix for #24364.
Browse files Browse the repository at this point in the history
see #24364

git-svn-id: http://core.svn.wordpress.org/trunk@24551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
markjaquith committed Jul 3, 2013
1 parent 66054d7 commit 5b8aad1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion wp-admin/user-edit.php
Expand Up @@ -376,7 +376,8 @@ function use_ssl_preference($user) {
?>
<tr id="password">
<th><label for="pass1"><?php _e('New Password'); ?></label></th>
<td><input type="password" name="pass1" id="pass1" size="16" value="" autocomplete="off" /> <span class="description"><?php _e("If you would like to change the password type a new one. Otherwise leave this blank."); ?></span>
<td>
<input type="password" name="pass1" id="pass1" size="16" value="" autocomplete="off" /> <span class="description"><?php _e("If you would like to change the password type a new one. Otherwise leave this blank."); ?></span>
</td>
</tr>
<tr>
Expand Down
3 changes: 2 additions & 1 deletion wp-admin/user-new.php
Expand Up @@ -341,7 +341,8 @@ function admin_created_user_subject( $text ) {
<?php if ( apply_filters('show_password_fields', true) ) : ?>
<tr class="form-field form-required">
<th scope="row"><label for="pass1"><?php _e('Password'); ?> <span class="description"><?php /* translators: password input field */_e('(required)'); ?></span></label></th>
<td><input name="pass1" type="password" id="pass1" autocomplete="off" />
<td>
<input name="pass1" type="password" id="pass1" autocomplete="off" />
</td>
</tr>
<tr class="form-field form-required">
Expand Down

0 comments on commit 5b8aad1

Please sign in to comment.