| 5 user.module | user_pass_rehash($password, $timestamp, $login) |
| 6 user.module | user_pass_rehash($password, $timestamp, $login) |
| 7 user.module | user_pass_rehash($password, $timestamp, $login) |
| 8 user.module | user_pass_rehash($password, $timestamp, $login) |
2 calls to user_pass_rehash()
File
- modules/
user/ user.module, line 1479 - Enables the user registration and login system.
Code
function user_pass_rehash($password, $timestamp, $login) {
return md5($timestamp . $password . $login);
}
Login or register to post comments