Remove autocomplete from the database password screen on setup-config.php. Props hebbet. Fixes #28585.

git-svn-id: https://develop.svn.wordpress.org/trunk@29032 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2014-07-08 18:31:21 +00:00
parent bfdd641013
commit d9ba81155e
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ switch($step) {
</tr>
<tr>
<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( '&hellip;and your MySQL password.' ); ?></td>
</tr>
<tr>