From a16be3495ec75de24083a4c2332ce8d33365b791 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Sun, 7 Nov 2004 07:54:35 +0000
Subject: [PATCH] - Patch #12658 by menesis: when an administrator adds a user,
 the 'authenticated user' role was not assigned to the new user.

---
 modules/user.module      | 2 +-
 modules/user/user.module | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/user.module b/modules/user.module
index fbaf7ddad194..7c5ca77be5e7 100644
--- a/modules/user.module
+++ b/modules/user.module
@@ -1300,7 +1300,7 @@ function user_admin_create($edit = array()) {
 
   if ($edit) {
     // Because the admin form doesn't have roles selection they need to be set to validate properly
-    $edit['roles'] = array(_user_authenticated_id());
+    $edit['roles'] = array(_user_authenticated_id() => 'authenticated user');
     user_module_invoke('validate', $edit, $edit, 'account');
 
     if (!form_get_errors()) {
diff --git a/modules/user/user.module b/modules/user/user.module
index fbaf7ddad194..7c5ca77be5e7 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -1300,7 +1300,7 @@ function user_admin_create($edit = array()) {
 
   if ($edit) {
     // Because the admin form doesn't have roles selection they need to be set to validate properly
-    $edit['roles'] = array(_user_authenticated_id());
+    $edit['roles'] = array(_user_authenticated_id() => 'authenticated user');
     user_module_invoke('validate', $edit, $edit, 'account');
 
     if (!form_get_errors()) {
-- 
GitLab