From: Andrew Hunt Date: Fri, 27 Feb 2015 05:06:03 +0000 (-0500) Subject: CRM-16024 - CiviGrant / Report: money transfer date filter wasn't working X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=0e214fe2206fa1781efae974f7c5cbe569577673;p=civicrm-core.git CRM-16024 - CiviGrant / Report: money transfer date filter wasn't working --- 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(