Index: modules/user.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/user.module,v
retrieving revision 1.536
diff -u -p -r1.536 user.module
--- modules/user.module	30 Nov 2005 11:09:38 -0000	1.536
+++ modules/user.module	2 Dec 2005 02:43:03 -0000
@@ -748,7 +748,7 @@ function user_menu($may_cache) {
       $items[] = array('path' => 'user/'. arg(1) .'/view', 'title' => t('view'),
         'access' => $view_access, 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10);
       $items[] = array('path' => 'user/'. arg(1) .'/edit', 'title' => t('edit'),
-        'callback' => 'user_edit', 'access' => $admin_access || $user->uid == arg(1),
+        'callback' => 'user_edit', 'access' => ($admin_access && arg(1) != 1) || $user->uid == arg(1),
         'type' => MENU_LOCAL_TASK);
       $items[] = array('path' => 'user/'. arg(1) .'/delete', 'title' => t('delete'),
         'callback' => 'user_edit', 'access' => $admin_access,

