Bedhead,
1) You had an error in one location of pasting the code. The instructions said find
PHP Code:
$newemailaddress=0;
}
And AFTER THAT paste a code. Instead, you pasted the code BEFORE the }
2) On three different locations, you have pasted the hack code on the same line as an existing code, which meant you were in effect COMMENTING OUT the existing code. Example:
your code:
Code:
// Contract Old Posts in Thread (v1.0)
if ($bbuserinfo[hideposts]) {
$hidepostschecked="checked";
$hidepostsnotchecked="";
} else {
$hidepostschecked="";
$hidepostsnotchecked="checked";
}
// Contract Old Posts in Thread (v1.0)if ($bbuserinfo[receivepm]) {
$receivepmchecked="checked";
$receivepmnotchecked="";
} else {
$receivepmchecked="";
$receivepmnotchecked="checked";
}
SHOULD BE:
Code:
// Contract Old Posts in Thread (v1.0)
if ($bbuserinfo[hideposts]) {
$hidepostschecked="checked";
$hidepostsnotchecked="";
} else {
$hidepostschecked="";
$hidepostsnotchecked="checked";
}
// Contract Old Posts in Thread (v1.0)
if ($bbuserinfo[receivepm]) {
$receivepmchecked="checked";
$receivepmnotchecked="";
} else {
$receivepmchecked="";
$receivepmnotchecked="checked";
}
I have edited your file and corrected your mistakes and will now e-mail it back to you.
However, I cannot stress enough to you and others - please follow installation instructions accurately or your scripts may be rendered useless.
Cheers,
Bira