I see your problem, have you modified the showtopic.php ?
you had to look for:
PHP Code:
$threadid = intval($threadid);
$thread = verifyid("thread",$threadid,1,1);
if ($wordwrap!=0) {
$thread['title']=dowordwrap($thread['title']);
}
if (!$thread['visible']) {
$idname="thread";
eval("standarderror(\"".gettemplate("error_invalidid")."\");");
exit;
}
$forum=getforuminfo($thread['forumid']);
then you had to add below this code:
PHP 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