user_pass_rehash

Definition

user_pass_rehash($password, $timestamp, $login)
modules/user/user.module, line 1430

Code

<?php
function user_pass_rehash($password, $timestamp, $login) {
  return md5($timestamp . $password . $login);
}
?>
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.