From f8035bb4965191fa3767d5d3f6192fb9be993cb9 Mon Sep 17 00:00:00 2001 From: yashodha Date: Wed, 19 Jan 2022 16:12:10 +0530 Subject: [PATCH] (dev/core#3012) Expose more options for email on hold as filter for lybunt report --- CRM/Report/Form/Contribute/Lybunt.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CRM/Report/Form/Contribute/Lybunt.php b/CRM/Report/Form/Contribute/Lybunt.php index 32b158d410..5ab5423e2e 100644 --- a/CRM/Report/Form/Contribute/Lybunt.php +++ b/CRM/Report/Form/Contribute/Lybunt.php @@ -147,8 +147,9 @@ class CRM_Report_Form_Contribute_Lybunt extends CRM_Report_Form { 'filters' => [ 'on_hold' => [ 'title' => ts('On Hold'), - 'type' => CRM_Utils_Type::T_BOOLEAN, - 'options' => ['' => ts('Any')] + CRM_Core_SelectValues::boolean(), + 'type' => CRM_Utils_Type::T_INT, + 'operatorType' => CRM_Report_Form::OP_MULTISELECT, + 'options' => ['' => ts('Any')] + CRM_Core_PseudoConstant::emailOnHoldOptions(), ], ], ], -- 2.25.1