From 890e87372167703b29851ad557754ca1ce2261b0 Mon Sep 17 00:00:00 2001 From: Nikki Date: Thu, 8 Oct 2015 16:35:00 -0400 Subject: [PATCH] Since is if it is hushed, is_visible should be inverse --- CRM/Utils/Check/Message.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/Check/Message.php b/CRM/Utils/Check/Message.php index 26fada181a..2711813a98 100644 --- a/CRM/Utils/Check/Message.php +++ b/CRM/Utils/Check/Message.php @@ -155,7 +155,7 @@ class CRM_Utils_Check_Message { } public function setVisible($isVisible) { - $this->isVisible = $isVisible; + $this->isVisible = $isVisible ? 1 : 0; } } -- 2.25.1