diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-13 22:27:01 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-13 22:27:01 +0000 |
commit | 96d830c50c7650229b4fad2bdcb3e863ec0bdc2a (patch) | |
tree | a07a441cdaeb8a2f1e613fd631fd7d096b42c519 /actions/email/confirm.php | |
parent | 2d508007f90be53f1895f284844ba1e1d52ac14c (diff) | |
download | elgg-96d830c50c7650229b4fad2bdcb3e863ec0bdc2a.tar.gz elgg-96d830c50c7650229b4fad2bdcb3e863ec0bdc2a.tar.bz2 |
Closes #227 and #243: Hopefully this has the fscking thing nailed to the wall.
Please report any problems, especially is they relate to access permissions (granted when you shouldn't or denied when you should)
git-svn-id: https://code.elgg.org/elgg/trunk@1912 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/email/confirm.php')
-rw-r--r-- | actions/email/confirm.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/email/confirm.php b/actions/email/confirm.php index d8597c880..39eb68908 100644 --- a/actions/email/confirm.php +++ b/actions/email/confirm.php @@ -29,7 +29,7 @@ system_message(elgg_echo('email:confirm:success')); $user = get_entity($user_guid); - //$user->enable(); + $user->enable(); notify_user($user_guid, $CONFIG->site->guid, sprintf(elgg_echo('email:validate:success:subject'), $user->username), sprintf(elgg_echo('email:validate:success:body'), $user->name), NULL, 'email'); |