Quote:
Originally Posted by RobinHood
Okay, try this:
Change:
PHP Code:
if (!($forumperms & CANGETATTACHMENT))
{
$vboptions['viewattachedimages'] = 0;
$vboptions['attachthumbs'] = 0;
}
To:
PHP Code:
if (!($forumperms & CANVIEW) OR !($forumperms & CANGETATTACHMENT))
{
$vboptions['viewattachedimages'] = 0;
$vboptions['attachthumbs'] = 0;
}
That should do the trick. Let me know how it goes. 
|
all my thumbnails are red x's and I get a no permisson
I have done what you said to do above and it still doesnt work