diff options
-rw-r--r-- | modules/user/user.module | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 08b94e3cd..3b0a1632e 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -324,7 +324,7 @@ function user_save($account, $array = array(), $category = 'account') { // must abort to avoid overwirting their account. return FALSE; } - + // Build the initial user object. $array['uid'] = db_last_insert_id('users', 'uid'); $user = user_load(array('uid' => $array['uid'])); @@ -1361,7 +1361,14 @@ function user_external_login_register($name, $module) { $user = user_load(array('name' => $name)); if (!isset($user->uid)) { // Register this new user. - $userinfo = array('name' => $name, 'pass' => user_password(), 'init' => $name, 'status' => 1, "authname_$module" => $name); + $userinfo = array( + 'name' => $name, + 'pass' => user_password(), + 'init' => $name, + 'status' => 1, + "authname_$module" => $name, + 'access' => time() + ); $account = user_save('', $userinfo); // Terminate if an error occured during user_save(). if (!$account) { |