- Patch #90662 by hunmonk: profile registration fields broken for user admins

5.x
Kjartan Mannes 2006-10-22 17:47:51 +00:00
parent 76d6439c2f
commit e070e83238
1 changed files with 1 additions and 1 deletions

View File

@ -631,7 +631,7 @@ function profile_form_profile($edit, $user, $category) {
if (arg(0) == 'user' && arg(1) == 'register') {
$result = db_query('SELECT * FROM {profile_fields} WHERE visibility != %d AND register = 1 ORDER BY category, weight', PROFILE_HIDDEN);
}
elseif (arg(0) == 'admin' && arg(1) == 'user' && arg(2) == 'create') {
elseif (arg(0) == 'admin' && arg(1) == 'user' && arg(2) == 'user' && arg(3) == 'create') {
$result = db_query('SELECT * FROM {profile_fields} WHERE register = 1 ORDER BY category, weight');
}
elseif (user_access('administer users')) {