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/delivery.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/delivery.php')
-rw-r--r-- | include/delivery.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/delivery.php b/include/delivery.php index 815287668..1328771a6 100644 --- a/include/delivery.php +++ b/include/delivery.php @@ -280,7 +280,7 @@ function delivery_run($argv, $argc){ continue; // private emails may be in included in public conversations. Filter them. - if(($public_message) && $item['private']) + if(($public_message) && $item['private'] == 1) continue; $item_contact = get_item_contact($item,$icontacts); @@ -383,7 +383,7 @@ function delivery_run($argv, $argc){ continue; // private emails may be in included in public conversations. Filter them. - if(($public_message) && $item['private']) + if(($public_message) && $item['private'] == 1) continue; $item_contact = get_item_contact($item,$icontacts); |