Index: install.php
===================================================================
RCS file: /cvs/drupal/drupal/install.php,v
retrieving revision 1.172
diff -u -p -r1.172 install.php
--- install.php	24 May 2009 23:21:12 -0000	1.172
+++ install.php	25 May 2009 01:25:26 -0000
@@ -1120,10 +1120,10 @@ function install_configure_form(&$form_s
  * Form API validate for the site configuration form.
  */
 function install_configure_form_validate($form, &$form_state) {
-  if ($error = user_validate_name($form_state['values']['account']['name'])) {
+  if ($error = user_validate_name($form_state['values']['name'])) {
     form_error($form['admin_account']['account']['name'], $error);
   }
-  if ($error = user_validate_mail($form_state['values']['account']['mail'])) {
+  if ($error = user_validate_mail($form_state['values']['mail'])) {
     form_error($form['admin_account']['account']['mail'], $error);
   }
   if ($error = user_validate_mail($form_state['values']['site_mail'])) {
@@ -1150,7 +1150,6 @@ function install_configure_form_submit($
   // Turn this off temporarily so that we can pass a password through.
   variable_set('user_email_verification', FALSE);
   $form_state['old_values'] = $form_state['values'];
-  $form_state['values'] = $form_state['values']['account'];
 
   // We precreated user 1 with placeholder values. Let's save the real values.
   $account = user_load(1);
