From 9a56e93c3d8cd5f99fff1757e48a05e85cd20e33 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 8 Jul 2004 06:12:39 +0000 Subject: - Patch #9125 by Morbus: remove access users permission. Will bring it back later. --- modules/user.module | 21 ++++++++------------- modules/user/user.module | 21 ++++++++------------- 2 files changed, 16 insertions(+), 26 deletions(-) (limited to 'modules') diff --git a/modules/user.module b/modules/user.module index 9e36b313e..8570b465f 100644 --- a/modules/user.module +++ b/modules/user.module @@ -1141,22 +1141,17 @@ function user_view($uid = 0) { } else { if ($account = user_load(array('uid' => $uid, 'status' => 1))) { - if (user_access('access users')) { - // Retrieve and merge all profile fields: - $fields = array(); - foreach (module_list() as $module) { - if ($data = module_invoke($module, 'user', 'view', '', $account)) { - foreach ($data as $category => $content) { - $fields[$category] .= $content; - } + // Retrieve and merge all profile fields: + $fields = array(); + foreach (module_list() as $module) { + if ($data = module_invoke($module, 'user', 'view', '', $account)) { + foreach ($data as $category => $content) { + $fields[$category] .= $content; } } - - print theme('page', theme('user_profile', $account, $fields), $account->name); - } - else { - drupal_access_denied(); } + + print theme('page', theme('user_profile', $account, $fields), $account->name); } else { drupal_not_found(); diff --git a/modules/user/user.module b/modules/user/user.module index 9e36b313e..8570b465f 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -1141,22 +1141,17 @@ function user_view($uid = 0) { } else { if ($account = user_load(array('uid' => $uid, 'status' => 1))) { - if (user_access('access users')) { - // Retrieve and merge all profile fields: - $fields = array(); - foreach (module_list() as $module) { - if ($data = module_invoke($module, 'user', 'view', '', $account)) { - foreach ($data as $category => $content) { - $fields[$category] .= $content; - } + // Retrieve and merge all profile fields: + $fields = array(); + foreach (module_list() as $module) { + if ($data = module_invoke($module, 'user', 'view', '', $account)) { + foreach ($data as $category => $content) { + $fields[$category] .= $content; } } - - print theme('page', theme('user_profile', $account, $fields), $account->name); - } - else { - drupal_access_denied(); } + + print theme('page', theme('user_profile', $account, $fields), $account->name); } else { drupal_not_found(); -- cgit v1.2.3