diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-25 18:04:12 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-25 18:04:12 +0000 |
commit | 9cdb242250336005002e7cc7ffa4d8c3316db30b (patch) | |
tree | c58702523ee6171b716f8d9c9de3b9485cabaf05 /actions | |
parent | 1feb73166aae32c77db23812802f995cdcb34358 (diff) | |
download | elgg-9cdb242250336005002e7cc7ffa4d8c3316db30b.tar.gz elgg-9cdb242250336005002e7cc7ffa4d8c3316db30b.tar.bz2 |
Refs #79
git-svn-id: https://code.elgg.org/elgg/trunk@1133 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions')
-rw-r--r-- | actions/email/confirm.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/actions/email/confirm.php b/actions/email/confirm.php new file mode 100644 index 000000000..d967f7c1e --- /dev/null +++ b/actions/email/confirm.php @@ -0,0 +1,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; + +?>
\ No newline at end of file |