Give better instructions when installing over an existing users table. Fixes #9569 based on patch from coffee2code.

git-svn-id: https://develop.svn.wordpress.org/trunk@11326 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood
2009-05-14 06:54:33 +00:00
parent 356592efa7
commit fe7cb199bb
2 changed files with 10 additions and 6 deletions

View File

@@ -136,8 +136,10 @@ switch($step) {
</tr>
<tr>
<th><?php _e('Password'); ?></th>
<td><code><?php echo $password; ?></code><br />
<?php echo '<p>'.__('<strong><em>Note that password</em></strong> carefully! It is a <em>random</em> password that was generated just for you.').'</p>'; ?></td>
<td><?php if ( !empty( $password ) ) {
echo '<code>'. $password .'</code><br />';
}
echo '<p>'. $password_message .'</p>'; ?></td>
</tr>
</table>