Skip to content
Snippets Groups Projects
Commit d97af32e authored by Dave Greenberg's avatar Dave Greenberg
Browse files

Fixes towards CRM-13107. This commit fixes create and edit modes. View mode is...

Fixes towards CRM-13107. This commit fixes create and edit modes. View mode is still broken (displaying field ID instead of LABEL).

----------------------------------------
* CRM-13107: Individual Prefix, Suffix and Gender fields are broken in Profile Create, Edit and View
  http://issues.civicrm.org/jira/browse/CRM-13107
parent 4647f343
No related branches found
No related tags found
No related merge requests found
......@@ -1835,7 +1835,7 @@ AND ( entity_id IS NULL OR entity_id <= 0 )
'' => ts('- select -')) + CRM_Member_PseudoConstant::membershipStatus(NULL, NULL, 'label'), $required
);
}
elseif ($fieldName === 'gender') {
elseif ($fieldName === 'gender_id') {
$genderOptions = array();
$gender = CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'gender_id');
foreach ($gender as $key => $var) {
......@@ -1846,13 +1846,13 @@ AND ( entity_id IS NULL OR entity_id <= 0 )
$form->addRule($name, ts('%1 is a required field.', array(1 => $title)), 'required');
}
}
elseif ($fieldName === 'individual_prefix') {
elseif ($fieldName === 'prefix_id') {
$form->add('select', $name, $title,
array(
'' => ts('- select -')) + CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'prefix_id'), $required
);
}
elseif ($fieldName === 'individual_suffix') {
elseif ($fieldName === 'suffix_id') {
$form->add('select', $name, $title,
array(
'' => ts('- select -')) + CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'suffix_id'), $required
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment