Fix up and normalize pw_weak/pw-weak IDs and labels.
props johnjamesjacoby fixes #33077 Built from https://develop.svn.wordpress.org/trunk@33363 git-svn-id: http://core.svn.wordpress.org/trunk@33335 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ae03a8a0a2
commit
f08f12f7cc
|
@ -164,7 +164,7 @@ function display_setup_form( $error = null ) {
|
|||
<th scope="row"><?php _e( 'Confirm Password' ); ?></th>
|
||||
<td>
|
||||
<label>
|
||||
<input type="checkbox" name="pw_weak" class="pw-checkbox" />
|
||||
<input type="checkbox" name="pw_weak" class="pw-checkbox" id="pw-weak" />
|
||||
<?php _e( 'Confirm use of weak password' ); ?>
|
||||
</label>
|
||||
</td>
|
||||
|
|
|
@ -483,7 +483,7 @@ if ( $show_password_fields ) :
|
|||
<tr class="pw-weak">
|
||||
<th><?php _e( 'Confirm Password' ); ?></th>
|
||||
<td>
|
||||
<label for="pw_weak">
|
||||
<label>
|
||||
<input type="checkbox" name="pw_weak" class="pw-checkbox" id="pw-weak" />
|
||||
<?php _e( 'Confirm use of weak password' ); ?>
|
||||
</label>
|
||||
|
|
|
@ -421,8 +421,8 @@ if ( apply_filters( 'show_password_fields', true ) ) : ?>
|
|||
<tr class="pw-weak">
|
||||
<th><?php _e( 'Confirm Password' ); ?></th>
|
||||
<td>
|
||||
<label for="pw-weak">
|
||||
<input type="checkbox" name="pw-weak" class="pw-checkbox" id="pw-weak" />
|
||||
<label>
|
||||
<input type="checkbox" name="pw_weak" class="pw-checkbox" id="pw-weak" />
|
||||
<?php _e( 'Confirm use of weak password' ); ?>
|
||||
</label>
|
||||
</td>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-beta3-33362';
|
||||
$wp_version = '4.3-beta3-33363';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue