Ok, I have a little problem that I can't figure out. On my site, I have 2 forums that I want to remain private. Ok, forums 7 and 8 are meant to be private, and they were working fine before. Then, I noticed one was no longer private. I did a bit of looking and which ever one is first in the list, is public and the second is private...here's my bb_specials to better explain..
<?php $clForums=array(8); $clForumsUsers[8]=array(1,2,5,7,9,19,20,21,22,23,24,28,37); $clForums=array(7); $clForumsUsers[7]=array(1,2,5,7,9,19,20,21,22,23,24,28,37); $roForums=array(); $poForums=array(); $userRanks=array(); $regUsrForums=array(1,3,4,5,6,7,8); $mods=array(19,20,22,23); $lastOut=array(7,8); ?>
Which ever one is done first, doesn't go private, it stays open to the public. This is how I have it now, and 8 is open to the public and 7 is private...if 7 is first then it is public. I am sure I'm missing something simple, but I can't see what it is.
It was working fine before, the only thing I've done is install the email plugin, and I don't see how one would effect the other.
Any help is appreciated. |