so drop the brackets around $newpass?
so it would be:
Code:
$pass_hash = md5(md5($newpass . $vbsalt));
OR
Code:
$pass_hash = md5($newpass . $vbsalt);
and also, so is client-side encryption using vbulletin_md5.js not necessary?
the thing is also that users are having no problems getting in, and they change the password and it encrypts correctly...its only after a few days that they log in where they are suddenly not able to anymore...very strange...so im thinking it might have something to do with session hash's or something since im just updating the database with the new encrypted password rather than go through the entire process vbulletin goes through for password changes.
thoughts?