projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
03aa678
)
Since is if it is hushed, is_visible should be inverse
author
Nikki
<nikki.liz.murray@gmail.com>
Thu, 8 Oct 2015 20:35:00 +0000
(16:35 -0400)
committer
Nikki Murray
<nikki.liz.murray@gmail.com>
Tue, 13 Oct 2015 19:21:54 +0000
(15:21 -0400)
CRM/Utils/Check/Message.php
patch
|
blob
|
blame
|
history
diff --git
a/CRM/Utils/Check/Message.php
b/CRM/Utils/Check/Message.php
index 26fada181a1de595511f71b021df55d5c8c626d2..2711813a988ce004829f819645059758b533b961 100644
(file)
--- 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
;
}
}