diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-12 14:05:44 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-12 14:05:44 +0000 |
commit | 3a74f3ad8c5b566f1f0eecd420056dc86110c501 (patch) | |
tree | 65937b5695115199154e61027487f8aa7dd9bd8a /actions/register.php | |
parent | 36ced79b9dfaeb4fcd3f5bc6e4d3fd2b25c19d2f (diff) | |
download | elgg-3a74f3ad8c5b566f1f0eecd420056dc86110c501.tar.gz elgg-3a74f3ad8c5b566f1f0eecd420056dc86110c501.tar.bz2 |
Closes #229: Admin signup now using different view + no password validation for admin signup
git-svn-id: https://code.elgg.org/elgg/trunk@1856 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/register.php')
-rw-r--r-- | actions/register.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/actions/register.php b/actions/register.php index 17b6fa169..38d1893b9 100644 --- a/actions/register.php +++ b/actions/register.php @@ -45,6 +45,9 @@ $new_user = get_entity($guid); $new_user->admin = 'yes'; } + + // Send email validation on register only + request_email_validation($guid); system_message(sprintf(elgg_echo("registerok"),$CONFIG->sitename)); |