diff options
author | friendica <info@friendica.com> | 2014-08-07 18:34:12 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-07 18:34:12 -0700 |
commit | 136fa15594bb41521c980573a0f52f87cc7b2992 (patch) | |
tree | a1260891c0ef68a2e46bc60522fb4bcbec1b141f /include | |
parent | a7d95108d04d057b6c07984f46647be7d708632a (diff) | |
download | volse-hubzilla-136fa15594bb41521c980573a0f52f87cc7b2992.tar.gz volse-hubzilla-136fa15594bb41521c980573a0f52f87cc7b2992.tar.bz2 volse-hubzilla-136fa15594bb41521c980573a0f52f87cc7b2992.zip |
obscured message showing up in email notification
Diffstat (limited to 'include')
-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 8baf5c09f..296287626 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']; + $private = (($i['item_private']) || ($i['item_flags'] & ITEM_OBSCURED)); } else { $title = $params['item']['title']; |