Skip to content

Commit 02a0858

Browse files
committed
Upgrade/Install: Disable spellcheck for password field on Setup screen.
This changeset adds `spellcheck="false"` attribute to Database Password field on the Database Setup screen. Follow-up to [55094], [55095], [55096]. See #56763. git-svn-id: https://develop.svn.wordpress.org/trunk@55110 602fd350-edb4-49c9-b593-d223f7449a82
1 parent d8368e7 commit 02a0858

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wp-admin/setup-config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ function setup_config_display_header( $body_classes = array() ) {
223223
</tr>
224224
<tr>
225225
<th scope="row"><label for="pwd"><?php _e( 'Password' ); ?></label></th>
226-
<td><input name="pwd" id="pwd" type="text" aria-describedby="pwd-desc" size="25" placeholder="<?php echo htmlspecialchars( _x( 'password', 'example password' ), ENT_QUOTES ); ?>" autocomplete="off" /></td>
226+
<td><input name="pwd" id="pwd" type="text" aria-describedby="pwd-desc" size="25" placeholder="<?php echo htmlspecialchars( _x( 'password', 'example password' ), ENT_QUOTES ); ?>" autocomplete="off" spellcheck="false" /></td>
227227
<td id="pwd-desc"><?php _e( 'Your database password.' ); ?></td>
228228
</tr>
229229
<tr>

0 commit comments

Comments
 (0)