From db371f3dc7ee3175c6261f0ac19fb105558468bb Mon Sep 17 00:00:00 2001 From: Cesar Date: Thu, 12 Sep 2019 17:46:27 +0200 Subject: [PATCH] fix: Reports show " " in filters with child-groups --- CRM/Report/Form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Report/Form.php b/CRM/Report/Form.php index 77495fdcba..2d98bd467f 100644 --- a/CRM/Report/Form.php +++ b/CRM/Report/Form.php @@ -3376,7 +3376,7 @@ WHERE cg.extends IN ('" . implode("','", $this->_customGroupExtends) . "') AND if ($value && empty($field['no_display'])) { $statistics['filters'][] = [ 'title' => CRM_Utils_Array::value('title', $field), - 'value' => $value, + 'value' => CRM_Utils_String::htmlToText($value), ]; } } -- 2.25.1