blob: 22b4008e8a60887316ad2c1e361d0f56bff27e2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* Action to request a new password.
*
* @package Elgg.Core
* @subpackage User.Account
*/
$username = get_input('username');
$user = get_user_by_username($username);
if ($user) {
if (send_new_password_request($user->guid)) {
system_message(elgg_echo('user:password:resetreq:success'));
} else {
register_error(elgg_echo('user:password:resetreq:fail'));
}
} else {
register_error(sprintf(elgg_echo('user:username:notfound'), $username));
}
forward();
|