We have just migrated from 3.8 to 3.10.
We had a problem with the group membership: we could not add new members, and the list of members in a group was not filled in (also the group name was not filled in for the list).
We tracked this down to two files in website_code/php/management:
- We had to add a "global $xerte_toolkits_site;" to the function add_members_to_group in add_member.php
- We had to add a "global $xerte_toolkits_site;" to the function get_group_members in get_group_members.php, and rewrite the $query as it was not adding $xerte_toolkits_site->database_table_prefix to the front of table "user_group_members" - we had to adjust the WHERE conditions as a result.
We are using 3.10 (git v3.10.4-25-g6388a3f)
We are using a non-empty $xerte_toolkits_site->database_table_prefix;