Skip to content

Commit 134c05d

Browse files
committed
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. git-svn-id: https://develop.svn.wordpress.org/trunk@55096 602fd350-edb4-49c9-b593-d223f7449a82
1 parent adc6211 commit 134c05d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wp-admin/user-edit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@
779779
<div class="create-application-password form-wrap">
780780
<div class="form-field">
781781
<label for="new_application_password_name"><?php _e( 'New Application Password Name' ); ?></label>
782-
<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" />
782+
<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" />
783783
<p class="description" id="new_application_password_name_desc"><?php _e( 'Required to create an Application Password, but not to update the user.' ); ?></p>
784784
</div>
785785

0 commit comments

Comments
 (0)