Changeset 3517 for trunk/wp-register.php
- Timestamp:
- 02/12/2006 07:53:23 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-register.php
r3507 r3517 15 15 $user_login = sanitize_user( $_POST['user_login'] ); 16 16 $user_email = $_POST['user_email']; 17 17 18 18 $errors = array(); 19 19 20 20 if ( $user_login == '' ) 21 21 $errors['user_login'] = __('<strong>ERROR</strong>: Please enter a username.'); … … 46 46 wp_new_user_notification($user_id, $password); 47 47 } 48 48 49 49 if ( 0 == count($errors) ) { 50 50 … … 54 54 <head> 55 55 <title>WordPress » <?php _e('Registration Complete') ?></title> 56 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_settings('blog_charset'); ?>" /> 56 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_settings('blog_charset'); ?>" /> 57 57 <link rel="stylesheet" href="wp-admin/wp-admin.css" type="text/css" /> 58 58 <style type="text/css">
Note: See TracChangeset
for help on using the changeset viewer.