Make WordPress Core


Ignore:
Timestamp:
02/27/2008 06:45:40 PM (17 years ago)
Author:
westi
Message:

Generate random passwords for users created during import. Fixes #5837 props pishmishy.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/import/mt.php

    r6943 r7065  
    6262        global $wpdb;
    6363        //mtnames is an array with the names in the mt import file
    64         $pass = 'changeme';
     64        $pass = wp_generate_password();
    6565        if (!(in_array($author, $this->mtnames))) { //a new mt author name is found
    6666            ++ $this->j;
     
    154154<p><?php _e('To make it easier for you to edit and save the imported posts and drafts, you may want to change the name of the author of the posts. For example, you may want to import all the entries as admin\'s entries.'); ?></p>
    155155<p><?php _e('Below, you can see the names of the authors of the MovableType posts in <i>italics</i>. For each of these names, you can either pick an author in your WordPress installation from the menu, or enter a name for the author in the textbox.'); ?></p>
    156 <p><?php _e('If a new user is created by WordPress, the password will be set, by default, to "changeme". Quite suggestive, eh? ;)'); ?></p>
     156<p><?php _e('If a new user is created by WordPress, a password will be randomly generated. Manually change the user\'s details if necessary.'); ?></p>
    157157    <?php
    158158
Note: See TracChangeset for help on using the changeset viewer.