diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-07 11:34:15 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-07 11:34:15 +0000 |
commit | f89ef0c9768871d42529ec81d2ec8e14565d6c71 (patch) | |
tree | e083ea3be9326cc170cf2621692e2852157ee89e /mod/uservalidationbyemail | |
parent | 350a6365c0d4d5c41686486cf4fa6c183deb13fe (diff) | |
download | elgg-f89ef0c9768871d42529ec81d2ec8e14565d6c71.tar.gz elgg-f89ef0c9768871d42529ec81d2ec8e14565d6c71.tar.bz2 |
removed debug
git-svn-id: https://code.elgg.org/elgg/trunk@2207 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/uservalidationbyemail')
-rw-r--r-- | mod/uservalidationbyemail/start.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mod/uservalidationbyemail/start.php b/mod/uservalidationbyemail/start.php index 674f53872..17057d249 100644 --- a/mod/uservalidationbyemail/start.php +++ b/mod/uservalidationbyemail/start.php @@ -26,7 +26,6 @@ */ function uservalidationbyemail_email_validation($event, $object_type, $object) { - error_log('EMAIL : '.$event." $object_type"); if (($object) && ($object instanceof ElggUser)) { uservalidationbyemail_request_validation($object->guid); @@ -66,7 +65,7 @@ // Work out validate link $link = $CONFIG->site->url . "action/email/confirm?u=$user_guid&c=" . uservalidationbyemail_generate_code($user_guid, $user->email); - // Send validation email + // Send validation email $result = notify_user($user->guid, $CONFIG->site->guid, sprintf(elgg_echo('email:validate:subject'), $user->username), sprintf(elgg_echo('email:validate:body'), $user->name, $link), NULL, 'email'); if ($result) system_message(elgg_echo('uservalidationbyemail:registerok')); |