From dd56d5dc2258bfff5daa0424d8d46ede60edb51d Mon Sep 17 00:00:00 2001 From: Pradeep Nayak Date: Wed, 23 Nov 2016 19:51:18 +0530 Subject: [PATCH] CRM-19681, fixed static function notice error ---------------------------------------- * CRM-19681: date fields not respected when passed through url for report https://issues.civicrm.org/jira/browse/CRM-19681 --- CRM/Report/Utils/Get.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Report/Utils/Get.php b/CRM/Report/Utils/Get.php index 8befb0a580..21005661f3 100644 --- a/CRM/Report/Utils/Get.php +++ b/CRM/Report/Utils/Get.php @@ -71,7 +71,7 @@ class CRM_Report_Utils_Get { $defaults["{$fieldName}_relative"] = $relative; } if ($relative) { - list($from, $to) = CRM_Report_Form::getFromTo($relative, NULL, NULL); + list($from, $to) = CRM_Utils_Date::getFromTo($relative, NULL, NULL); $from = substr($from, 0, 8); $to = substr($to, 0, 8); } -- 2.25.1