From 1590f97a1d25d8a92fc8593ef155a08e138c2d69 Mon Sep 17 00:00:00 2001 From: eileen Date: Sun, 1 Jul 2018 19:10:12 +1200 Subject: [PATCH] Fix mis-reporting of false booleans in reports --- CRM/Report/Form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Report/Form.php b/CRM/Report/Form.php index 367408a339..97f2e78d0f 100644 --- a/CRM/Report/Form.php +++ b/CRM/Report/Form.php @@ -2433,7 +2433,7 @@ WHERE cg.extends IN ('" . implode("','", $this->_customGroupExtends) . "') AND * @return mixed */ protected function alterBoolean($value) { - $options = array(0 => ts('No'), 1 => ts('Yes')); + $options = array(0 => '', 1 => ts('Yes')); if (isset($options[$value])) { return $options[$value]; } -- 2.25.1