I'd like to modify my subscriptions.php file to restrict anyone but one userid to view stats. Can someone tell me how to modify the following:
PHP Code:
if (!can_administer('canadminusers'))
{
print_cp_no_permission();
}
so that it not only checks "!can_administer" but also displays the "no_permission" error if anyone but userid X is trying access?
So in english it'd be "If user doesn't have admin user permission, OR their userid does not equal X, then give the "no permission error"
Thanks in advance!