[wpmu-trac] Re: [WordPress MU Trac] #462: Reduce the ambiguity in creating blog and users and some additional checking

WordPress MU Trac wpmu-trac at lists.automattic.com
Fri Oct 19 23:07:57 GMT 2007


#462: Reduce the ambiguity in creating blog and users and some additional
checking
-------------------------+--------------------------------------------------
 Reporter:  ktlee        |        Owner:  somebody
     Type:  enhancement  |       Status:  new     
 Priority:  normal       |    Milestone:  WPMU 2.0
Component:  component1   |      Version:  2.0     
 Severity:  normal       |   Resolution:          
 Keywords:               |  
-------------------------+--------------------------------------------------
Comment (by ktlee):

 Donncha:
 When creating blog using the Site Admin -> Blog.

 Do you want to add an additional input box for username?
 This will reduce the ambiguity in error echo by the following code and
 it's easier for new siteadmin to understand.

 WPMU use blog domain as his/her username.

 {{{
 $user_id = email_exists($email);
 if( !$user_id ) { // I'm not sure what this check should be.
         $password = generate_random_password();
         $user_id = wpmu_create_user( $domain, $password, $email );
         if(false == $user_id) {
                 wp_die( __("<p>There was an error creating the user</p>")
 );
         } else {
                 wp_new_user_notification($user_id, $password);
         }
 }
 }}}

-- 
Ticket URL: <http://trac.mu.wordpress.org/ticket/462#comment:1>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser


More information about the wpmu-trac mailing list