EvilLS1 |
11-29-2004 12:43 AM |
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 ?:D
As i am mixed up and cant get it from what the djjeffa said in the above post?:D
|
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.
|