Ok, I instaklled it and have a question or two.
Here's the code you said to look for:
PHP Code:
4- edit register.php, find:
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
if ($password!=$passwordconfirm) {
eval("standarderror(\"".gettemplate("error_passwordmismatch")."\");");
exit;
}
Here's the code from bira's hack:
PHP Code:
// Send Random Password Instead of Activation Code (v2.0)
if ($randpassword=="0" and $password!=$passwordconfirm) {
// Send Random Password Instead of Activation Code (v2.0)
eval("standarderror(\"".gettemplate("error_passwordmismatch")."\");");
exit;
}
The member.php file had bira's hack in the update password part but it didn't look like it affected your code. I'm not sure though.
Also, I have a question about the wording in the Admin CP.
Quote:
User password cant be same with username?
|
Does yes mean it CAN't be the same or does no mean that?
Quote:
Password Complexity
Password can NOT be birthyears or custom ones you set below
|
Same with this one.
I just want to be 100 percent sure I'm not setting something wrong.