
01-21-2011, 08:15 AM
|
|
|
Join Date: Jan 2011
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by swapps
I use vbulletin 3.8.6. in german language.
After the AddOn-Installation you will find a "PlugIn" named "AWC-Welcome PM".
You can edit the PHP-Code:
Change
PHP Code:
WHERE usergroupid IN (".$this->registry->options['awcm_usergroups'].")
INTO something like that:
PHP Code:
WHERE FIND_IN_SET('X', membergroupids)
(replace X with the variable or insert the secondary groupid manually)
see: http://dev.mysql.com/doc/refman/5.0/...on_find-in-set
membergroupids is the stringlist
|
Got it working. Thanks
|