Quote:
Originally Posted by Pladimir
Same Problem here. When i go in to the UserCP and then navigate to the invites, it shows me up the following error on the top of the site:
Code:
Warnung: explode() expects parameter 2 to be string, array given in [path]/profile.php(182) : eval()'d code (Zeile 245)
greez
|
I was having this same problem. You can fix this by editing the "Invitation User CP" plugin that has the Hook Location of 'profile_start'. Look around line 247 of the code for:
PHP Code:
$groups = explode(',',$vbulletin->options['invitation_allowed_usergroups']);
And change this to:
PHP Code:
$groups = $vbulletin->options['invitation_allowed_usergroups'];