Maybe i've missed the setting you're referring to - i've set forum permissions so that all regular users cannot "view others' threads" or "reply to others' threads" and this stops people viewing the actual thread content. However, i can still see the full list of threads in forumdisplay.
Is there a way to only let a user see the threads they have started in forumdisplay ($threadbits) and no others? I originally tried it using:
Code:
<if condition="$foruminfo[forumid] == 'x'">
<if condition="$threadinfo['postuserid'] == $bbuserinfo['userid'] && $threadinfo['firstpostid'] = $bbuserinfo['userid']">
$threadbits
</if>
<else />
$threadbits
</if>
But it failed spectacularly. Or have i just not found the correct vB setting?