Quote:
Originally Posted by cellarius
It's not a good idea to do this on the template level. Just add this at the top of your custom code in the php file:
PHP Code:
if (!$vbulletin->userinfo['userid'])
{
print_no_permission();
exit();
}
|
Cellarius, why is it not a good idea to manage it at template level?, doing it with a template conditional means that it's easily manipulated later by admins...etc rather than having to access server files, unless i'm missing a security flaw or something?