Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Crash when adding a relationship when CiviMember is disabled (backport) #22476

Merged
merged 1 commit into from
Jan 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions CRM/Contact/BAO/Contact.php
Original file line number Diff line number Diff line change
Expand Up @@ -2704,10 +2704,16 @@ public static function getCountComponent($component, $contactId, $tableName = NU
return CRM_Core_BAO_Note::getContactNoteCount($contactId);

case 'contribution':
return CRM_Contribute_BAO_Contribution::contributionCount($contactId);
if (array_key_exists('CiviContribute', CRM_Core_Component::getEnabledComponents())) {
return CRM_Contribute_BAO_Contribution::contributionCount($contactId);
}
return FALSE;

case 'membership':
return CRM_Member_BAO_Membership::getContactMembershipCount((int) $contactId, TRUE);
if (array_key_exists('CiviMember', CRM_Core_Component::getEnabledComponents())) {
return CRM_Member_BAO_Membership::getContactMembershipCount((int) $contactId, TRUE);
}
return FALSE;

case 'participant':
return CRM_Event_BAO_Participant::getContactParticipantCount($contactId);
Expand Down