Settings: properly set the password field label on loading.
See #33778. Built from https://develop.svn.wordpress.org/trunk@34062 git-svn-id: http://core.svn.wordpress.org/trunk@34030 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0406f50cfb
commit
e1ccdf760e
|
@ -153,7 +153,7 @@
|
||||||
$cancelButton;
|
$cancelButton;
|
||||||
|
|
||||||
$pass1Row = $('.user-pass1-wrap');
|
$pass1Row = $('.user-pass1-wrap');
|
||||||
$pass1Label = $pass1Row.find('th label');
|
$pass1Label = $pass1Row.find('th label').attr( 'for', 'pass1-text' );
|
||||||
|
|
||||||
// hide this
|
// hide this
|
||||||
$('.user-pass2-wrap').hide();
|
$('.user-pass2-wrap').hide();
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-34061';
|
$wp_version = '4.4-alpha-34062';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue