diff options
author | friendica <info@friendica.com> | 2014-08-07 18:58:33 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-07 18:58:33 -0700 |
commit | ad1472abf008147df0d3142d34dd9e20ec8cab96 (patch) | |
tree | 0a8790e1e214e73f345b34c59da7e486a3daaa47 | |
parent | ad4dc666c58ac6d486549ba399991e25585b23ca (diff) | |
download | volse-hubzilla-ad1472abf008147df0d3142d34dd9e20ec8cab96.tar.gz volse-hubzilla-ad1472abf008147df0d3142d34dd9e20ec8cab96.tar.bz2 volse-hubzilla-ad1472abf008147df0d3142d34dd9e20ec8cab96.zip |
got the logic reversed on that one
-rw-r--r-- | include/zot.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/zot.php b/include/zot.php index 6ca27aa70..eed731778 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1231,7 +1231,7 @@ function zot_import($arr, $sender_url) { // of the private flag on the post. if($i['message'] && array_key_exists('public_scope',$i['message']) - && $i['message']['public_scope'] === 'public') { + && $i['message']['public_scope'] !== 'public') { if(! array_key_exists('flags',$i['message'])) $i['message']['flags'] = array(); |