Remove autocomplete from the database password screen on setup-config.php. Props hebbet. Fixes #28585.
Built from https://develop.svn.wordpress.org/trunk@29032 git-svn-id: http://core.svn.wordpress.org/trunk@28820 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b90b64bf9e
commit
d543096d93
|
@ -152,7 +152,7 @@ switch($step) {
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row"><label for="pwd"><?php _e( 'Password' ); ?></label></th>
|
<th scope="row"><label for="pwd"><?php _e( 'Password' ); ?></label></th>
|
||||||
<td><input name="pwd" id="pwd" type="text" size="25" value="<?php echo htmlspecialchars( _x( 'password', 'example password' ), ENT_QUOTES ); ?>" /></td>
|
<td><input name="pwd" id="pwd" type="text" size="25" value="<?php echo htmlspecialchars( _x( 'password', 'example password' ), ENT_QUOTES ); ?>" autocomplete="off" /></td>
|
||||||
<td><?php _e( '…and your MySQL password.' ); ?></td>
|
<td><?php _e( '…and your MySQL password.' ); ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
Loading…
Reference in New Issue