From 03aa6781f40672a669c89943fa79630ef3a7ca87 Mon Sep 17 00:00:00 2001 From: Nikki Date: Thu, 8 Oct 2015 16:34:05 -0400 Subject: [PATCH] since $messge returns if it's hushed or not, is visible should return opposite --- CRM/Utils/Check.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/Check.php b/CRM/Utils/Check.php index 7951832397..87d930c432 100644 --- a/CRM/Utils/Check.php +++ b/CRM/Utils/Check.php @@ -206,7 +206,7 @@ class CRM_Utils_Check { foreach ($messages as $key => $message) { $hush = self::checkHushSnooze($message); - $message->setVisible($hush); + $message->setVisible(!$hush); } uasort($messages, array(__CLASS__, 'severitySort')); -- 2.25.1