From 05a98cea8d7ac9c71030557ac1ada957ec3f1f15 Mon Sep 17 00:00:00 2001 From: atif-shaikh Date: Wed, 5 Nov 2014 13:48:32 +0530 Subject: [PATCH] Subtypes Not Visible Fix --- CRM/Event/Form/ManageEvent/Registration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Event/Form/ManageEvent/Registration.php b/CRM/Event/Form/ManageEvent/Registration.php index da52a4beae..a299d81223 100644 --- a/CRM/Event/Form/ManageEvent/Registration.php +++ b/CRM/Event/Form/ManageEvent/Registration.php @@ -361,7 +361,7 @@ class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent extract( ( is_null($configs) ) ? self::getProfileSelectorTypes() : $configs ); $element = $prefix . "custom_post_id_multiple[$count]"; $label .= '
'.ts('(bottom of page)'); - $form->addProfileSelector( $element, $label, $allowCoreTypes, $allowSubTypes, $profileEntities); + $form->addProfileSelector( $element, $label, $allowCoreTypes, $allowSubTypes, $profileEntities, TRUE); } /** -- 2.25.1