Log in

View Full Version : Permissions code issue with 3.6.x


transparent
04-04-2008, 04:05 AM
Hello,

I have been attempting to use this (https://vborg.vbsupport.ru/showthread.php?t=66084&page=5) hack by Erwin that hasn't been updated for 3.6.X. It works perfect for the exception of the permissions. I'm not sure if this is the correct spot for this post but I will try it anyways.

The code for the permissions is provided below. This was working in 3.5 but I'm guessing something was changed in 3.6 that broke it. Does anyone know what the correct code would be to pull permissions to view the specific page? It does pull permissions as of now but it will deny all usergroups instead of allow all the specified.

if (!in_array($bbuserinfo['usergroupid'], array(2,5,6,7))) print_no_permission();Thank you so much for your time!:)

Dismounted
04-04-2008, 04:49 AM
if (is_member_of($vbulletin->userinfo, 2, 5, 6, 7))
{
print_no_permission();
}

Lynne
04-04-2008, 02:50 PM
Except it's a NOT in array. So, put an "!" before it, like "!is_member_of"

transparent
04-04-2008, 06:53 PM
Wow...works perfect! Thank you both so much:D

Dismounted
04-05-2008, 05:28 AM
Except it's a NOT in array. So, put an "!" before it, like "!is_member_of"
My bad, I didn't see the exclamation mark :p.