From a45ddb787c355312824a7449d618893d0db663be Mon Sep 17 00:00:00 2001 From: yashodha Date: Mon, 15 Apr 2019 11:14:39 +0530 Subject: [PATCH] (dev/core#876) Allow url to set IS NULL/ NOT NULL in report for operations --- CRM/Report/Utils/Get.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CRM/Report/Utils/Get.php b/CRM/Report/Utils/Get.php index 02d9b57309..992ff2c082 100644 --- a/CRM/Report/Utils/Get.php +++ b/CRM/Report/Utils/Get.php @@ -178,6 +178,11 @@ class CRM_Report_Utils_Get { } break; + case 'nll': + case 'nnll': + $defaults["{$fieldName}_op"] = $fieldOP; + break; + case 'in': case 'notin': // send the type as string so that multiple values can also be retrieved from url. -- 2.25.1