|
The error is this
This line in the forum integration files is this
$query[] = "CREATE TABLE {$pp_db_prefix}usergroups (groupid int(5) NOT NULL auto_increment,
needs to be this
$query = "CREATE TABLE {$pp_db_prefix}usergroups (groupid int(5) NOT NULL auto_increment,
Notice its $query not $query[] as we are not doing an array.
I will make sure the files are updated.
|