Details
-
Type:
Bug
-
Status: Done/Fixed
-
Priority:
Critical
-
Resolution: Fixed/Completed
-
Affects Version/s: 4.1.5
-
Fix Version/s: 4.1.5
-
Component/s: Drupal Integration Modules
-
Labels:None
Description
A regression appeared in the Drupal 6 module to sync memberships to roles in 4.1.5. This has already been identified in http://issues.civicrm.org/jira/browse/CRM-10525 but this issue is to ensure that it's resolved.
The problem is that civicrm_member_roles.module is loading the wrong API file:
require_once 'api/v2/MembershipContact.php';
It should be:
require_once 'api/v2/Membership.php';
However, Eileen has provided a patch in CRM-10525 that upgrades the similar module to use the v3 API. Can this be done for this module also?
Thanks