From 77b647b60bcba55a62cfc607acfbc0f32115dacc Mon Sep 17 00:00:00 2001 From: relldoesphp Date: Tue, 26 May 2015 18:12:50 -0400 Subject: [PATCH] CRM-16457 Fixes error caused by contribution fulfillment date --- CRM/Contribute/BAO/Query.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Contribute/BAO/Query.php b/CRM/Contribute/BAO/Query.php index c61f3c5873..e3b2a24ebd 100644 --- a/CRM/Contribute/BAO/Query.php +++ b/CRM/Contribute/BAO/Query.php @@ -337,7 +337,7 @@ class CRM_Contribute_BAO_Query { case 'contribution_check_number': case 'contribution_contact_id': case (strpos($name, '_amount') !== FALSE): - case (strpos($name, '_date') !== FALSE): + case (strpos($name, '_date') !== FALSE && $name != 'contribution_fulfilled_date'): $qillName = $name; $pseudoExtraParam = NULL; if ((strpos($name, '_amount') !== FALSE) || (strpos($name, '_date') !== FALSE) || in_array($name, -- 2.25.1