diff options
author | friendica <info@friendica.com> | 2015-01-22 18:41:10 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-22 18:41:10 -0800 |
commit | 6e0e3b2433fc426b758a55811f56536d58705813 (patch) | |
tree | a8d8fb7c63216cea94765e93be935f2b9d2fe227 /include/enotify.php | |
parent | e46eba125888704b4381aa8418495e91eeb565c8 (diff) | |
download | volse-hubzilla-6e0e3b2433fc426b758a55811f56536d58705813.tar.gz volse-hubzilla-6e0e3b2433fc426b758a55811f56536d58705813.tar.bz2 volse-hubzilla-6e0e3b2433fc426b758a55811f56536d58705813.zip |
more expanding item flags
Diffstat (limited to 'include/enotify.php')
-rw-r--r-- | include/enotify.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/enotify.php b/include/enotify.php index 53f1ae5ef..34552cc36 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -65,7 +65,7 @@ function notification($params) { localize_item($i); $title = $i['title']; $body = $i['body']; - $private = (($i['item_private']) || ($i['item_flags'] & ITEM_OBSCURED)); + $private = (($i['item_private']) || intval($i['item_obscured'])); } else { $title = $params['item']['title']; |