diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-03 18:50:32 -0700 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-05-20 22:21:22 +0200 |
commit | 3919c8f79f9f104e99b161e9034c68eba3fe86a0 (patch) | |
tree | cb3c6f915c588c8b8d044af3c67ae018fe003b31 /include/zot.php | |
parent | 803be11bbc6e4d149629808b4473833f73910c6f (diff) | |
download | volse-hubzilla-3919c8f79f9f104e99b161e9034c68eba3fe86a0.tar.gz volse-hubzilla-3919c8f79f9f104e99b161e9034c68eba3fe86a0.tar.bz2 volse-hubzilla-3919c8f79f9f104e99b161e9034c68eba3fe86a0.zip |
abook_not_here flag created to indicate singleton connections which are connected to this channel but not on this hub. abook_instance enumerates which hubs the connections is valid, but we ultimately need something more efficiently searchable to decide what operations are supported w/r/t this connection in the context of this hub. This flag is ignored during sync to clones although the code to set it correctly during channel creation, import, and sync has not yet been implemented.
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/zot.php b/include/zot.php index 14c6662e3..748fe7b99 100644 --- a/include/zot.php +++ b/include/zot.php @@ -3226,12 +3226,10 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { } - $disallowed = array('abook_id','abook_account','abook_channel','abook_rating','abook_rating_text'); + $disallowed = array('abook_id','abook_account','abook_channel','abook_rating','abook_rating_text','abook_not_here'); foreach($arr['abook'] as $abook) { - - $abconfig = null; if(array_key_exists('abconfig',$abook) && is_array($abook['abconfig']) && count($abook['abconfig'])) |