From 78d6e4b29435bf4517195dc5e9b5e110e334c1ea Mon Sep 17 00:00:00 2001 From: eileen Date: Wed, 3 Aug 2016 12:34:04 +1200 Subject: [PATCH] CRM-18060 fix campaign e-notice on lybunt --- CRM/Report/Form/Contribute/Lybunt.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CRM/Report/Form/Contribute/Lybunt.php b/CRM/Report/Form/Contribute/Lybunt.php index 3742669d16..c17bc0b816 100644 --- a/CRM/Report/Form/Contribute/Lybunt.php +++ b/CRM/Report/Form/Contribute/Lybunt.php @@ -252,11 +252,13 @@ class CRM_Report_Form_Contribute_Lybunt extends CRM_Report_Form { $this->_columns['civicrm_contribution']['fields']['campaign_id'] = array( 'title' => ts('Campaign'), 'default' => 'false', + 'type' => CRM_Utils_Type::T_INT, ); $this->_columns['civicrm_contribution']['filters']['campaign_id'] = array( 'title' => ts('Campaign'), 'operatorType' => CRM_Report_Form::OP_MULTISELECT, 'options' => $this->activeCampaigns, + 'type' => CRM_Utils_Type::T_INT, ); } -- 2.25.1