diff options
author | friendica <info@friendica.com> | 2012-06-28 17:43:29 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-28 17:43:29 -0700 |
commit | a3edbf7e5d0d89e99c2249cf30657b1fbc57982a (patch) | |
tree | 75d20b8a787b229c0fdbb48861b4a064e35c31fb /include/notifier.php | |
parent | 43d3721fa92f21007f45427eea35810a3b8545c6 (diff) | |
download | volse-hubzilla-a3edbf7e5d0d89e99c2249cf30657b1fbc57982a.tar.gz volse-hubzilla-a3edbf7e5d0d89e99c2249cf30657b1fbc57982a.tar.bz2 volse-hubzilla-a3edbf7e5d0d89e99c2249cf30657b1fbc57982a.zip |
create third privacy state - public post but not searchable or publicly visible
Diffstat (limited to 'include/notifier.php')
-rw-r--r-- | include/notifier.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/notifier.php b/include/notifier.php index 443cc3014..f54efba31 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -399,7 +399,7 @@ function notifier_run($argv, $argc){ // private emails may be in included in public conversations. Filter them. - if(($public_message) && $item['private']) + if(($public_message) && $item['private'] == 1) continue; |