diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-03 14:12:28 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-03 14:12:28 +0000 |
commit | 71851e5cdd2315c7dcf178803239d1047c223916 (patch) | |
tree | b48dc33a9bdf4c3801c85d0363176b0e0ceee16b /actions/email/confirm.php | |
parent | a4439b71e65637611a0cf96879528a182aee48ef (diff) | |
download | elgg-71851e5cdd2315c7dcf178803239d1047c223916.tar.gz elgg-71851e5cdd2315c7dcf178803239d1047c223916.tar.bz2 |
Refs #311 : Removing old email confirmation code.
git-svn-id: https://code.elgg.org/elgg/trunk@2173 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/email/confirm.php')
-rw-r--r-- | actions/email/confirm.php | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/actions/email/confirm.php b/actions/email/confirm.php deleted file mode 100644 index 39eb68908..000000000 --- a/actions/email/confirm.php +++ /dev/null @@ -1,47 +0,0 @@ -<?php - /** - * Action which confirms an email when it is registered or changed, based on a code. - * - * @package Elgg - * @subpackage Core - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 - * @author - * @copyright Curverider Ltd 2008 - * @link http://elgg.org/ - */ - - require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); - global $CONFIG; - - // Get user id - $access_status = access_get_show_hidden_status(); - access_show_hidden_entities(true); - - $user_guid = (int)get_input('u'); - $user = get_entity($user_guid); - - // And the code - $code = sanitise_string(get_input('c')); - - if ( ($code) && ($user) ) - { - if (validate_email($user_guid, $code)) { - system_message(elgg_echo('email:confirm:success')); - - $user = get_entity($user_guid); - $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'); - - } else - register_error(elgg_echo('email:confirm:fail')); - } - else - register_error(elgg_echo('email:confirm:fail')); - - access_show_hidden_entities($access_status); - - forward($_SERVER['HTTP_REFERER']); - exit; - -?>
\ No newline at end of file |