From e070e83238ff8007bf63b51f6bbf15d51c3b4827 Mon Sep 17 00:00:00 2001 From: Kjartan Mannes Date: Sun, 22 Oct 2006 17:47:51 +0000 Subject: [PATCH] - Patch #90662 by hunmonk: profile registration fields broken for user admins --- modules/profile/profile.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/profile/profile.module b/modules/profile/profile.module index d3664ff4d46..c6da587218e 100644 --- a/modules/profile/profile.module +++ b/modules/profile/profile.module @@ -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')) {