Quote:
Originally Posted by lanc3lot
Sorry, in what pages i must change so i can make it play only for my registered users, admins, and mods - super mods ?
As i am mixed up and cant get it from what the djjeffa said in the above post? 
|
At the top of vBRadio.php right after this:
// ---------------------------------------------------
// End Require Globalized Settings
// ---------------------------------------------------
Add this:
Code:
if (empty($bbuserinfo['userid']))
{
print_no_permission();
}
That'll stop guests from using it. If you want to specify certain groups use the code from the other post above.