Application Passwords: Disable spellcheck for password field.
This changeset adds `spellcheck="false"` attribute to application password field. Follow-up to [55094], [55095]. Props Spaceshipone. Fixes #56763. Built from https://develop.svn.wordpress.org/trunk@55096 git-svn-id: http://core.svn.wordpress.org/trunk@54629 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a97156c76d
commit
f92b90116a
|
@ -779,7 +779,7 @@ switch ( $action ) {
|
||||||
<div class="create-application-password form-wrap">
|
<div class="create-application-password form-wrap">
|
||||||
<div class="form-field">
|
<div class="form-field">
|
||||||
<label for="new_application_password_name"><?php _e( 'New Application Password Name' ); ?></label>
|
<label for="new_application_password_name"><?php _e( 'New Application Password Name' ); ?></label>
|
||||||
<input type="text" size="30" id="new_application_password_name" name="new_application_password_name" class="input" aria-required="true" aria-describedby="new_application_password_name_desc" />
|
<input type="text" size="30" id="new_application_password_name" name="new_application_password_name" class="input" aria-required="true" aria-describedby="new_application_password_name_desc" spellcheck="false" />
|
||||||
<p class="description" id="new_application_password_name_desc"><?php _e( 'Required to create an Application Password, but not to update the user.' ); ?></p>
|
<p class="description" id="new_application_password_name_desc"><?php _e( 'Required to create an Application Password, but not to update the user.' ); ?></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.2-alpha-55095';
|
$wp_version = '6.2-alpha-55096';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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