diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-01-28 01:48:31 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-01-28 01:48:31 +0000 |
commit | 16e429db64b00e4f1d7a3f703f4bfef7bb59e79e (patch) | |
tree | 0e21b26ea9549212bbc19a8d669f847ffff45654 /actions | |
parent | 3aeb6fcf7a5fab9050803e49af7cab6ea094ba4e (diff) | |
download | elgg-16e429db64b00e4f1d7a3f703f4bfef7bb59e79e.tar.gz elgg-16e429db64b00e4f1d7a3f703f4bfef7bb59e79e.tar.bz2 |
Fixes #1049, Fixes #1435: Admin-created users and first admin user are marked as validated to prevent inaccurate "Please validate your account" messages and emails.
git-svn-id: http://code.elgg.org/elgg/trunk@3851 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions')
-rw-r--r-- | actions/useradd.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actions/useradd.php b/actions/useradd.php index 71b8d826d..ea0bc66e0 100644 --- a/actions/useradd.php +++ b/actions/useradd.php @@ -36,6 +36,7 @@ try { $new_user->admin_created = true; $new_user->created_by_guid = get_loggedin_userid(); + set_user_validation_status($new_user->getGUID(), TRUE, 'admin_created'); notify_user($new_user->guid, $CONFIG->site->guid, elgg_echo('useradd:subject'), sprintf(elgg_echo('useradd:body'), $name, $CONFIG->site->name, $CONFIG->site->url, $username, $password)); |