diff options
author | friendica <info@friendica.com> | 2013-07-23 20:58:25 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-07-23 20:58:25 -0700 |
commit | fd09cfa1dfd5fdff9a4271b3ba7425b698e5cbef (patch) | |
tree | 5889aa551f105c61b029e58c1cfdd1b9a42dd23e /include | |
parent | 727ab78f9aacb50dff76b3a9cfea80ef781af371 (diff) | |
download | volse-hubzilla-fd09cfa1dfd5fdff9a4271b3ba7425b698e5cbef.tar.gz volse-hubzilla-fd09cfa1dfd5fdff9a4271b3ba7425b698e5cbef.tar.bz2 volse-hubzilla-fd09cfa1dfd5fdff9a4271b3ba7425b698e5cbef.zip |
build_sync_packet - use correct host data element
Diffstat (limited to 'include')
-rw-r--r-- | include/settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/settings.php b/include/settings.php index 846111c1d..f7bb98d93 100644 --- a/include/settings.php +++ b/include/settings.php @@ -28,7 +28,7 @@ function build_sync_packet($uid = 0, $packet = null) { $synchubs = array(); foreach($h as $x) { - if($x['host'] == $a->get_hostname()) + if($x['hubloc_host'] == $a->get_hostname()) continue; $synchubs[] = $x; } |