ChristianAlfred
07-10-2015, 04:06 AM
I have integrated vb4 with other pages to check if users are in the right group to access the page.
Example
if (is_member_of($vbulletin->userinfo, 6))
echo "In the right group";
} else {
echo "Not in the right group";
};
How can I do the same in vBulletin 5?
Example
if (is_member_of($vbulletin->userinfo, 6))
echo "In the right group";
} else {
echo "Not in the right group";
};
How can I do the same in vBulletin 5?