I'm converting from Rev to Uber, and I need to change Uber's password hashing. I've looked over a few threads and found nothing helpful. Can someone help me locate the hash? Also, it's for Uber 2.
I'm converting from Rev to Uber, and I need to change Uber's password hashing. I've looked over a few threads and found nothing helpful. Can someone help me locate the hash? Also, it's for Uber 2.
includes/class.users.php
Spoiler:
function UserHash($password, $username)
{
return sha1(md5($password) . strtolower($username));
}
to
Spoiler:
function UserHash($password)
{
return md5($password);
}