Index: modules/user/user.module =================================================================== RCS file: /cvs/drupal/drupal/modules/user/user.module,v retrieving revision 1.670 diff -u -p -r1.670 user.module --- modules/user/user.module 1 Sep 2006 07:32:58 -0000 1.670 +++ modules/user/user.module 5 Sep 2006 03:31:02 -0000 @@ -1301,7 +1301,7 @@ function user_edit_form($uid, $edit, $re '#required' => TRUE, ); } - if ($admin) { + if ($admin && $uid != 1) { $form['account']['status'] = array('#type' => 'radios', '#title' => t('Status'), '#default_value' => isset($edit['status']) ? $edit['status'] : 1, '#options' => array(t('Blocked'), t('Active'))); } if (user_access('administer access control')) {