diff options
-rw-r--r-- | modules/profile/profile.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/profile/profile.module b/modules/profile/profile.module index d3664ff4d..c6da58721 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')) { |