aboutsummaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
Diffstat (limited to 'actions')
-rw-r--r--actions/email/confirm.php47
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