Log in

View Full Version : Need just a bit of php help


kontrabass
03-18-2008, 05:58 PM
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:


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!

Opserty
03-18-2008, 06:14 PM
if (!can_administer('canadminusers') OR $vbulletin->userinfo['userid'] != 1)


1 being the UserID you want to restrict the page to.

kontrabass
03-18-2008, 06:49 PM
Thanks much! Works perfectly