user_pass_reset_url
- Versions
- 4.7 – 7
user_pass_reset_url($account)
Code
modules/user/user.module, line 1178
<?php
function user_pass_reset_url($account) {
$timestamp = time();
return url("user/reset/$account->uid/$timestamp/".user_pass_rehash($account->pass, $timestamp, $account->login), NULL, NULL, TRUE);
}
?>Login or register to post comments 