ok madhouse, I looked at your files and found your error
Open register.php and find (lines 42-48 in your script) :
Code:
// Send Random Password Instead of Activation Code (v2.0)
if ($randpassword=="1") {
eval("\$register_passwordbit = \"".gettemplate('register_nopassword')."\";");
} else {
eval("\$register_passwordbit = \"".gettemplate('register_yespassword')."\";");
}
// Send Random Password Instead of Activation Code (v2.0)
You placed this code in the WRONG place. Cut it out of the script and paste it BEFORE:
Code:
if ($who=="adult") {
eval("dooutput(\"".gettemplate("registeradult")."\");");
} else {
eval("dooutput(\"".gettemplate("registercoppa")."\");");
}
(on line 199 in your script after cutting the above code).
So the end result will be:
PHP Code:
// Send Random Password Instead of Activation Code (v2.0)
if ($randpassword=="1") {
eval("\$register_passwordbit = \"".gettemplate('register_nopassword')."\";");
} else {
eval("\$register_passwordbit = \"".gettemplate('register_yespassword')."\";");
}
// Send Random Password Instead of Activation Code (v2.0)
if ($who=="adult") {
eval("dooutput(\"".gettemplate("registeradult")."\");");
} else {
eval("dooutput(\"".gettemplate("registercoppa")."\");");
}
This will fix your problem