From 53839be5c81c8419e2e73e8dd35906bc34090117 Mon Sep 17 00:00:00 2001 From: malmeida Date: Wed, 7 Jul 2021 10:00:47 +0100 Subject: [PATCH] dev/core#2652 - Civi\Report - Add is null / is not null to OP_MULTISELECT_SEPARATOR --- CRM/Report/Form.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CRM/Report/Form.php b/CRM/Report/Form.php index de0bb7b24f..369628754d 100644 --- a/CRM/Report/Form.php +++ b/CRM/Report/Form.php @@ -1879,6 +1879,8 @@ class CRM_Report_Form extends CRM_Core_Form { $result = [ 'mhas' => ts('Is one of'), 'mnot' => ts('Is not one of'), + 'nll' => ts('Is empty (Null)'), + 'nnll' => ts('Is not empty (Null)'), ]; return $result; -- 2.25.1