Always build contact subtype field
authorfrancescbassas <francesc@babu.cat>
Thu, 14 Jul 2016 11:09:14 +0000 (13:09 +0200)
committerGitHub <noreply@github.com>
Thu, 14 Jul 2016 11:09:14 +0000 (13:09 +0200)
If a contact subtype can be of more contact subtypes then make sense to always show contact subtype on form contact.

CRM/Contact/Form/Contact.php

index 412491bcc8b6ee0db04adf453d4c1625a4609d13..1c04b66e516b5e4411a12ef6f29d9a5edec505e0 100644 (file)
@@ -312,13 +312,6 @@ class CRM_Contact_Form_Contact extends CRM_Core_Form {
     $this->assign('contactType', $this->_contactType);
     $this->assign('contactSubType', $this->_contactSubType);
 
-    //build contact subtype form element, CRM-6864
-    $buildContactSubType = TRUE;
-    if ($this->_contactSubType && ($this->_action & CRM_Core_Action::ADD)) {
-      $buildContactSubType = FALSE;
-    }
-    $this->assign('buildContactSubType', $buildContactSubType);
-
     // get the location blocks.
     $this->_blocks = $this->get('blocks');
     if (CRM_Utils_System::isNull($this->_blocks)) {