From 6e57f5ca3c8733acebca463a770edc959574b6dc Mon Sep 17 00:00:00 2001 From: monishdeb Date: Fri, 30 Jan 2015 18:06:29 +0530 Subject: [PATCH] CRM-15695 fix - Showing Custom data options in report criteria problem https://issues.civicrm.org/jira/browse/CRM-15695 --- CRM/Report/Form.php | 1 + 1 file changed, 1 insertion(+) diff --git a/CRM/Report/Form.php b/CRM/Report/Form.php index 789e165b01..6f66ecfc7b 100644 --- a/CRM/Report/Form.php +++ b/CRM/Report/Form.php @@ -3315,6 +3315,7 @@ ORDER BY cg.weight, cf.weight"; while ($ogDAO->fetch()) { $curFilters[$fieldName]['options'][$ogDAO->value] = $ogDAO->label; } + CRM_Utils_Hook::customFieldOptions($customDAO->cf_id, $curFilters[$fieldName]['options'], FALSE); } } break; -- 2.25.1