Quote:
Originally Posted by n00belit3
Very nice, i have only one problem, for those of us using portals such as vbindex i figured out taht you can still view threads as unregistered by clicking under "latest threads". Is there any way from preventing unregistered users from doing this?
|
I would normally tell you to ask in the vBIndex support thread, but I'm feeling nice today
So here we go:
Open up the vbindex.php for vBIndex and find
PHP Code:
if ($vbindex['options'] & VBI_SHOWTHREADS) {
Replace with
PHP Code:
if ($vbindex['options'] & VBI_SHOWTHREADS and $bbuserinfo[userid] != 0) {
There we go that should work