diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-07-13 05:50:31 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-07-13 05:50:31 -0400 |
commit | 75b943b98a32efdb229e331a2d1a503f46b3afc9 (patch) | |
tree | 377b5e99be4c0a7f2730d2b36903cdbf790c25e1 /include/zot.php | |
parent | 513175982367a970d491948f7d8aa1488f6a4340 (diff) | |
parent | 18565600b2b9e36f1792bf29d5575f681fafc0b5 (diff) | |
download | volse-hubzilla-75b943b98a32efdb229e331a2d1a503f46b3afc9.tar.gz volse-hubzilla-75b943b98a32efdb229e331a2d1a503f46b3afc9.tar.bz2 volse-hubzilla-75b943b98a32efdb229e331a2d1a503f46b3afc9.zip |
Merge remote-tracking branch 'upstream/dev' into website-import
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/zot.php b/include/zot.php index 6dd789181..45347ef22 100644 --- a/include/zot.php +++ b/include/zot.php @@ -3014,7 +3014,12 @@ function build_sync_packet($uid = 0, $packet = null, $groups_changed = false) { if($x['hubloc_host'] == App::get_hostname()) continue; - $synchubs[] = $x; + $y = q("select site_dead from site where site_url = '%s' limit 1", + dbesc($x['hubloc_url']) + ); + + if((! $y) || ($y[0]['site_dead'] == 0)) + $synchubs[] = $x; } if(! $synchubs) |