From 912a8063ad15a8136d16fe8a1b1a7ea921651382 Mon Sep 17 00:00:00 2001 From: Deepak Srivastava Date: Wed, 28 Aug 2013 16:23:08 +0530 Subject: [PATCH] CRM-13125 - url filter support for type float --- CRM/Report/Utils/Get.php | 1 + 1 file changed, 1 insertion(+) diff --git a/CRM/Report/Utils/Get.php b/CRM/Report/Utils/Get.php index 15e0a7633e..87c84ac19f 100644 --- a/CRM/Report/Utils/Get.php +++ b/CRM/Report/Utils/Get.php @@ -181,6 +181,7 @@ class CRM_Report_Utils_Get { foreach ($fields as $fieldName => $field) { switch (CRM_Utils_Array::value('type', $field)) { case CRM_Utils_Type::T_INT: + case CRM_Utils_Type::T_FLOAT: case CRM_Utils_Type::T_MONEY: self::intParam($fieldName, $field, $defaults); break; -- 2.25.1