From 95c5c21b9384b1f8a3654acb45b6007b8a037776 Mon Sep 17 00:00:00 2001 From: Matthew Wire <mjw@mjwconsult.co.uk> Date: Sat, 27 May 2017 11:24:30 +0100 Subject: [PATCH] Fix invalid bounce type filter for bounce report --- CRM/Report/Form/Mailing/Bounce.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Report/Form/Mailing/Bounce.php b/CRM/Report/Form/Mailing/Bounce.php index 3e91050215..ab6046e8d7 100644 --- a/CRM/Report/Form/Mailing/Bounce.php +++ b/CRM/Report/Form/Mailing/Bounce.php @@ -441,7 +441,7 @@ class CRM_Report_Form_Mailing_Bounce extends CRM_Report_Form { */ public function bounce_type() { - $data = array('' => ts('--Please Select--')); + $data = array(); $bounce_type = new CRM_Mailing_DAO_BounceType(); $query = "SELECT name FROM civicrm_mailing_bounce_type"; -- 2.25.1