- Patch #9125 by Morbus: remove access users permission. Will bring it back later.
parent
d3904c05cc
commit
9a56e93c3d
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue