hi
i don't understand why this
https://vborg.vbsupport.ru/showthrea...17#post1425217 is a problem
the function is built this way:
PHP Code:
// #############################################################################
/**
* Works out if a user is a member of the specified usergroup(s)
*
* This function can be overloaded to test multiple usergroups: is_member_of($user, 1, 3, 4, 6...)
*
* @param array User info array - must contain userid, usergroupid and membergroupids fields
* @param integer Usergroup ID to test
* @param boolean Pull result from cache
*
* @return boolean
*/
function is_member_of(&$userinfo, $usergroupid, $cache = true)
so when i'm having:
PHP Code:
if (is_member_of($vbulletin->userinfo, $vbulletin->options['login_groups']))
{
and in login_groups stands: 3,4 then it should be
PHP Code:
if (is_member_of($vbulletin->userinfo, 3,4))
{
but it seems at it isn't
does somebody know what i'm making false?