aboutsummaryrefslogtreecommitdiff
path: root/actions/email/confirm.php
blob: d967f7c1eb3a9af0aabb1cb1608517ca986fc90e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?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");

	// Ensure we are logged in
	gatekeeper();

	// Get user id
	$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'));
		else
			system_message(elgg_echo('email:confirm:fail'));
	}
	else
		system_message(elgg_echo('email:confirm:fail'));
	
	forward($_SERVER['HTTP_REFERER']);
	exit;

?>