Quote:
Originally Posted by TTayfun
@Paul M I think calendar.php should be limited from guest 
|
If you really want to hide it from guests simply put this in a plugin
PHP Code:
if(THIS_SCRIPT == 'calendar' AND is_member_of($vbulletin->userinfo,1,3,8)){
header( 'Location: http://www.google.com' ) ;
}
Use global_complete as the hook
No any person not logged in, banned or awaiting email confirmation will get redirected when trying to view the calendar, of course you dont have to redirect them you can display a message...etc
I've just added the above to show folk how they can deny any usergroup from any script

enjoy!