did you modified the showtopic.php correctly ? I have the same code in the description of the hack than in my board.
PHP Code:
download the showthread.php and make a backup of this file
look for this code (ca 205):
if (!$thread['visible']) {
$idname="thread";
eval("standarderror(\"".gettemplate("error_invalidid")."\");");
exit;
}
$forum=getforuminfo($thread['forumid']);
add below this code:
// Password-Hack-by Afterburner-Start
if ($forum['password']) {
$boardid="userspezial$thread[forumid]";
if ($bbuserinfo[$boardid] != 1) {
eval("standarderror(\"".gettemplate('fehler_password_showtopic')."\");");
exit;
}
}
// Password-Hack-by Afterburner-End
upload the showthread.php.