Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Trivial
-
Resolution: Fixed/Completed
-
Affects Version/s: 4.7
-
Fix Version/s: 4.7.2
-
Component/s: None
-
Labels:None
-
Documentation Required?:None
-
Funding Source:Contributed Code
Description
I don't know what but something must be broken by the mix & match param spelling in master
$pseudoOptions
$pseduoOptions
https://github.com/civicrm/civicrm-core/blob/master/CRM/Contact/BAO/Query.php#L5825
```
{{ if ($fieldName == 'activity_type_id')
elseif ($fieldName == 'country_id')
{ $pseduoOptions = CRM_Core_PseudoConstant::country(); }elseif ($fieldName == 'county_id')
{ $pseduoOptions = CRM_Core_PseudoConstant::county(); }elseif ($fieldName == 'world_region')
{ $pseduoOptions = CRM_Core_PseudoConstant::worldRegion(); }elseif ($daoName == 'CRM_Event_DAO_Event' && $fieldName == 'id')
{ $pseudoOptions = CRM_Event_BAO_Event::getEvents(0, $fieldValue, TRUE, TRUE, TRUE); }}}
```