aboutsummaryrefslogtreecommitdiffstats
path: root/include/zot.php
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2016-07-13 05:50:31 -0400
committerAndrew Manning <tamanning@zoho.com>2016-07-13 05:50:31 -0400
commit75b943b98a32efdb229e331a2d1a503f46b3afc9 (patch)
tree377b5e99be4c0a7f2730d2b36903cdbf790c25e1 /include/zot.php
parent513175982367a970d491948f7d8aa1488f6a4340 (diff)
parent18565600b2b9e36f1792bf29d5575f681fafc0b5 (diff)
downloadvolse-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.php7
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)