From 0e214fe2206fa1781efae974f7c5cbe569577673 Mon Sep 17 00:00:00 2001 From: Andrew Hunt Date: Fri, 27 Feb 2015 00:06:03 -0500 Subject: [PATCH] CRM-16024 - CiviGrant / Report: money transfer date filter wasn't working --- CRM/Report/Form/Grant/Detail.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CRM/Report/Form/Grant/Detail.php b/CRM/Report/Form/Grant/Detail.php index 13e626f2b6..24a6ead3aa 100644 --- a/CRM/Report/Form/Grant/Detail.php +++ b/CRM/Report/Form/Grant/Detail.php @@ -190,17 +190,19 @@ class CRM_Report_Form_Grant_Detail extends CRM_Report_Form { array( 'title' => ts('Application Received'), 'operatorType' => CRM_Report_Form::OP_DATE, + 'type' => CRM_Utils_Type::T_DATE, ), 'money_transfer_date' => array( 'title' => ts('Money Transfer Date'), 'operatorType' => CRM_Report_Form::OP_DATE, + 'type' => CRM_Utils_Type::T_DATE, ), 'grant_due_date' => array( 'title' => ts('Grant Report Due'), 'operatorType' => CRM_Report_Form::OP_DATE, - 'type' => CRM_Report_Form::OP_DATE, + 'type' => CRM_Utils_Type::T_DATE, ), 'decision_date' => array( -- 2.25.1