Quote:
Originally Posted by blind-eddie
Anyone know how to set this up so only select user groups see & use this. I know I can set it to user groups not being able to use it, but I don't want registered guest or unregistered guest to view it either. Thanks to whom ever get me the info.....
|
here's what I did - I edited vbimghost.php.
Find:
PHP Code:
// ########################################################################
// ######################### START MAIN SCRIPT ############################
// ########################################################################
Obviously, you could change this to whatever conditional you want.
hth
And put this directly after it:
PHP Code:
if ($vbulletin->userinfo['userid'] == 0)
{
print_no_permission();
}