Skip to content
Snippets Groups Projects
Commit 13a7de79 authored by lobo's avatar lobo
Browse files

Merge pull request #2346 from jmcclelland/county-field-should-populate-with-counties

CRM-14077 - contact/address - county field should populate with counties...
parents e6d2f3ba 1fc261cc
No related branches found
No related tags found
No related merge requests found
......@@ -468,7 +468,7 @@ class CRM_Contact_Form_Edit_Address {
$counties = CRM_Core_PseudoConstant::countyForState($stateID);
}
else {
$counties = CRM_Core_PseudoConstant::country();
$counties = CRM_Core_PseudoConstant::county();
}
$form->addElement('select', $countyElementName, ts('County'), array('' => ts('- select -')) + $counties);
......
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