----------------------------------------
* CRM-18204: Enables use of Mixed Profile for create mode
https://issues.civicrm.org/jira/browse/CRM-18204
$this->assign('isGroupReserved', $isGroupReserved);
$profileType = CRM_Core_BAO_UFField::getProfileType($this->_gid);
- if ($profileType == 'Contribution' || $profileType == 'Membership' || $profileType == 'Activity' || $profileType == 'Participant') {
+ $contactTypes = CRM_Contact_BAO_ContactType::contactTypes();
+ $contactTypes[] = 'Contact';
+ if (!in_array($profileType, $contactTypes)) {
$this->assign('skipCreate', TRUE);
}