
02-29-2008, 07:36 PM
|
 |
|
|
Join Date: Jan 2003
Location: Belgium
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by nexialys
have to be
PHP Code:
if(is_member_of($vbulletin->userinfo, explode(',', $vbulletin->options['login_groups']))) {
|
Quote:
Originally Posted by Opserty
As nexialys has shown you need to explode it as 2,3,4 appears to PHP as string, like "2,3,4," so when you insert it into your function it would look like this: is_member_of($vbulletin->userinfo, "2,3,4") which as you have found won't work. 
|
God... I searched for days why it didn't worked, thanks!
|