aboutsummaryrefslogtreecommitdiff
path: root/actions/user/passwordreset.php
blob: 201d6abcf0a5d6061279786146c0a2548e43d579 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
 * Action to reset a password and send success email.
 *
 * @package Elgg
 * @subpackage Core
 */

$user_guid = get_input('u');
$code = get_input('c');

if (execute_new_password_request($user_guid, $code)) {
	system_message(elgg_echo('user:password:success'));
} else {
	register_error(elgg_echo('user:password:fail'));
}

forward();
exit;